-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNoFences.csproj
More file actions
23 lines (20 loc) · 900 Bytes
/
NoFences.csproj
File metadata and controls
23 lines (20 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net48</TargetFramework>
<AssemblyName>Universe</AssemblyName>
<ApplicationIcon>universe.ico</ApplicationIcon>
<UseWindowsForms>true</UseWindowsForms>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<ApplicationManifest>app.manifest</ApplicationManifest>
<StartupObject>NoFences.Program</StartupObject>
<LangVersion>7.3</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="NLog" Version="5.2.8" />
<PackageReference Include="System.Resources.Extensions" Version="6.0.0" />
</ItemGroup>
</Project>