forked from WhitefangGreytail/WG_CitizenEdit
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Lifecycle Rebalance Revisited.csproj
52 lines (52 loc) · 2.35 KB
/
Lifecycle Rebalance Revisited.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net35</TargetFramework>
<Title>Lifecycle Rebalance Revisited</Title>
<AssemblyTitle>$(Title)</AssemblyTitle>
<Description>A Cities: Skylines mod.</Description>
<Authors>algernon</Authors>
<Copyright>Copyright © 2020-24 algernon, 2016-18 Whitefang Greytail</Copyright>
<Product>$(Title)</Product>
<Version>1.6.8</Version>
<ManagedDLLPath>$(MSBuildProgramFiles32)/Steam/steamapps/common/Cities_Skylines/Cities_Data/Managed</ManagedDLLPath>
<AssemblySearchPaths>
$(AssemblySearchPaths);
$(ManagedDLLPath)
</AssemblySearchPaths>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CitiesHarmony.API" Version="2.2.0" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Reference Include="Assembly-CSharp" />
<Reference Include="ColossalManaged" />
<Reference Include="ICities" />
<Reference Include="UnityEngine" />
</ItemGroup>
<ItemGroup>
<_Translations Include="$(ProjectDir)/Translations/*.csv" />
<_TranslationsCore Include="../AlgernonCommons/Translations/*.csv" />
<_Examples Include="XML_Files/*.xml" />
<_Documentation Include="XMLFileAndEditDiscussion.txt" />
</ItemGroup>
<Target Name="DeployToModDirectory" AfterTargets="Build">
<PropertyGroup>
<DeployDir>$(LOCALAPPDATA)/Colossal Order/Cities_Skylines/Addons/Mods/$(SolutionName)/</DeployDir>
</PropertyGroup>
<Copy SourceFiles="$(TargetPath)" DestinationFolder="$(DeployDir)" />
<Copy SourceFiles="$(TargetDir)/CitiesHarmony.API.dll" DestinationFolder="$(DeployDir)" />
<Copy SourceFiles="@(_Translations)" DestinationFolder="$(DeployDir)/Translations" />
<Copy SourceFiles="@(_TranslationsCore)" DestinationFolder="$(DeployDir)/Translations/Core" />
<Copy SourceFiles="@(_Examples)" DestinationFolder="$(DeployDir)" />
<Copy SourceFiles="@(_Documentation)" DestinationFolder="$(DeployDir)" />
</Target>
<Import Project="..\AlgernonCommons\AlgernonCommonsPatchingShared.projitems" Label="Shared" />
<ItemGroup>
<Content Remove="LICENSE.txt" />
</ItemGroup>
</Project>