-
Notifications
You must be signed in to change notification settings - Fork 1
/
PvpArena.csproj
47 lines (47 loc) · 1.83 KB
/
PvpArena.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net472</TargetFramework>
<Product>PvpArena</Product>
<RootNamespace>PvpArena</RootNamespace>
<AssemblyName>PvpArena</AssemblyName>
<AssemblyTitle>PvpArena</AssemblyTitle>
<Description>A Hollow Knight Mod</Description>
<Copyright>Copyright © SFGrenade 2024</Copyright>
<AssemblyVersion>1.5.1.0</AssemblyVersion>
<FileVersion>$(AssemblyVersion)</FileVersion>
<ImplicitUsings>false</ImplicitUsings>
<DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
<OutputPath>bin/$(Configuration)/</OutputPath>
<LangVersion>latest</LangVersion>
<PathMap>$(MSBuildProjectDirectory)=source</PathMap>
<AssemblyOriginatorKeyFile>../sgKey.snk</AssemblyOriginatorKeyFile>
<HollowKnightRefs />
<ExportDir />
<AssetbundleDir />
<!--<GenerateDocumentationFile>true</GenerateDocumentationFile>-->
</PropertyGroup>
<Import Project="LocalOverrides.targets" Condition="Exists('LocalOverrides.targets')" />
<Import Project="build_steps.targets" />
<PropertyGroup Condition=" '$(Configuration)' == 'Release' AND Exists('$(AssemblyOriginatorKeyFile)') ">
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<ItemGroup>
<Reference Include="$(HollowKnightRefs)/*.dll" />
</ItemGroup>
<ItemGroup>
<Folder Include="Resources" />
<Folder Include="src" />
<Folder Include="test" />
<None Include=".gitignore" />
<None Include="LICENSE" />
<None Include="README.md" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources/pvparenaassets" />
<EmbeddedResource Include="Resources/pvparenascenes" />
<EmbeddedResource Include="Resources/Language.json" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../SFCore/SFCore.csproj" />
</ItemGroup>
</Project>