Notepad.csproj
1<Project Sdk="Microsoft.NET.Sdk">
2 <!-- Project Configuration -->
3 <PropertyGroup>
4 <OutputType>Exe</OutputType>
5 <TargetFramework>net6.0</TargetFramework>
6 <ImplicitUsings>enable</ImplicitUsings>
7 <Nullable>enable</Nullable>
8 <AssemblyName>notepad</AssemblyName>
9 <RuntimeIdentifiers>win-x64;osx-x64;osx-arm64;linux-x64</RuntimeIdentifiers>
10 </PropertyGroup>
11 <!-- Reference to any Packages -->
12 <ItemGroup>
13 <PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
14 <PackageReference Include="Terminal.Gui" Version="1.17.0" />
15 </ItemGroup>
16
17 <!-- Resources -->
18 <ItemGroup>
19 <EmbeddedResource Include="Resources/filetypes.json" />
20 </ItemGroup>
21
22</Project>
23