-
Notifications
You must be signed in to change notification settings - Fork 13
/
CnCNet.LauncherStub.csproj
28 lines (28 loc) · 1.1 KB
/
CnCNet.LauncherStub.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<TargetFrameworks>net40; net471</TargetFrameworks>
<LangVersion>12.0</LangVersion>
<OutputType>WinExe</OutputType>
<UseWPF>true</UseWPF>
<Title>CnCNet Launcher</Title>
<Description>Launcher for CnCNet Client</Description>
<Company>CnCNet</Company>
<Product>CnCNet Client Launcher</Product>
<Copyright>Copyright © CnCNet, Rampastring 2011-2024</Copyright>
<Trademark></Trademark>
<AssemblyName>CnCNet.LauncherStub</AssemblyName>
<RootNamespace>CnCNet.LauncherStub</RootNamespace>
<ComVisible>false</ComVisible>
<CLSCompliant>false</CLSCompliant>
<AnalysisLevel>latest-all</AnalysisLevel>
<Nullable>enable</Nullable>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<Platform>AnyCPU</Platform>
<ApplicationIcon>mainclienticon.ico</ApplicationIcon>
<ApplicationHighDpiMode>PerMonitorV2</ApplicationHighDpiMode>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<ItemGroup>
<Content Include="mainclienticon.ico" />
</ItemGroup>
</Project>