-
Notifications
You must be signed in to change notification settings - Fork 5
/
EightyOne2.csproj
43 lines (43 loc) · 1.92 KB
/
EightyOne2.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net35</TargetFramework>
<Title>81 Tiles 2</Title>
<AssemblyTitle>$(Title)</AssemblyTitle>
<Description>A Cities: Skylines mod.</Description>
<Authors>algernon</Authors>
<Copyright>Copyright © 2022-24 algernon</Copyright>
<Product>$(Title)</Product>
<Version>1.0.4</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>
<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" />
</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" />
</Target>
<Import Project="..\AlgernonCommons\AlgernonCommonsPatchingShared.projitems" Label="Shared" />
</Project>