forked from OpenRA/OpenRA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOpenRA.WindowsLauncher.csproj
29 lines (28 loc) · 1.12 KB
/
OpenRA.WindowsLauncher.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
29
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>winexe</OutputType>
<ApplicationIcon>$(LauncherIcon)</ApplicationIcon>
<AssemblyName>$(LauncherName)</AssemblyName>
</PropertyGroup>
<ItemGroup>
<None Include="App.config" />
<AssemblyAttribute Include="System.Reflection.AssemblyMetadataAttribute" Condition="$(ModID) != ''">
<_Parameter1>ModID</_Parameter1>
<_Parameter2>$(ModID)</_Parameter2>
</AssemblyAttribute>
<AssemblyAttribute Include="System.Reflection.AssemblyMetadataAttribute" Condition="$(DisplayName) != ''">
<_Parameter1>DisplayName</_Parameter1>
<_Parameter2>$(DisplayName)</_Parameter2>
</AssemblyAttribute>
<AssemblyAttribute Include="System.Reflection.AssemblyMetadataAttribute" Condition="$(FaqUrl) != ''">
<_Parameter1>FaqUrl</_Parameter1>
<_Parameter2>$(FaqUrl)</_Parameter2>
</AssemblyAttribute>
</ItemGroup>
<ItemGroup>
<PackageReference Include="OpenRA-SDL2-CS" Version="1.0.31" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\OpenRA.Game\OpenRA.Game.csproj" />
</ItemGroup>
</Project>