-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSortedIncome.csproj
73 lines (73 loc) · 3.49 KB
/
SortedIncome.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="15.0">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition="'$(Configuration)' == ''">Release</Configuration>
<Platform Condition="'$(Platform)' == ''">AnyCPU</Platform>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>SortedIncome</RootNamespace>
<AssemblyName>$(RootNamespace)</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
<ProjectGuid>{55C47F30-373C-4C5C-81F1-450E28809134}</ProjectGuid>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
<OutputPath>D:\Steam\steamapps\common\Mount & Blade II Bannerlord\Modules\$(RootNamespace)\bin\Win64_Shipping_Client</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<LangVersion>latest</LangVersion>
<PlatformTarget>AnyCPU</PlatformTarget>
<Optimize>true</Optimize>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Utilities\TranslationUtils.cs" />
<Compile Include="Sorting.cs" />
<Compile Include="SubModule.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Utilities\OutputUtils.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Bannerlord.ReferenceAssemblies">
<Version>1.1.6.26219</Version>
</PackageReference>
<PackageReference Include="Lib.Harmony">
<Version>2.2.2</Version>
<ExcludeAssets>runtime</ExcludeAssets>
</PackageReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<UsingTask TaskName="ASMXML.AutomaticSubModuleXML" AssemblyFile="..\ASMXML.dll" />
<Target Name="AutomaticSubModuleXML" AfterTargets="Build">
<PropertyGroup>
<Id>SortedIncome</Id>
<Name>Aggregated Income</Name>
<Version>v4.2.7</Version>
<Default>false</Default>
<Category>Singleplayer</Category>
<Type>Community</Type>
<HarmonyVersion>v2.2.2</HarmonyVersion>
<MinimumGameVersion>v1.0.0</MinimumGameVersion>
</PropertyGroup>
<ItemGroup>
<DependedModules Include="Bannerlord.Harmony, $(HarmonyVersion)" />
<DependedModules Include="Native, $(MinimumGameVersion)" />
<DependedModules Include="SandBoxCore, $(MinimumGameVersion)" />
<DependedModules Include="Sandbox, $(MinimumGameVersion)" />
<DependedModules Include="StoryMode, $(MinimumGameVersion)" />
<DependedModules Include="CustomBattle, $(MinimumGameVersion), true" />
<DependedModules Include="BirthAndDeath, $(MinimumGameVersion), true" />
<SubModules Include="$(Id), $(Id).dll, $(Id).SubModule" />
</ItemGroup>
<AutomaticSubModuleXML OutputPath="$(OutputPath)" Id="$(Id)" Name="$(Name)" Version="$(Version)" DefaultModule="$(Default)" ModuleCategory="$(Category)" ModuleType="$(Type)" DependedModules="@(DependedModules)" SubModules="@(SubModules)" />
</Target>
</Project>