-
Notifications
You must be signed in to change notification settings - Fork 5
/
BOB.csproj
58 lines (58 loc) · 2.82 KB
/
BOB.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net35</TargetFramework>
<Title>BOB, the tree and prop replacer</Title>
<AssemblyTitle>$(Title)</AssemblyTitle>
<Description>A Cities: Skylines mod.</Description>
<Authors>algernon</Authors>
<Copyright>Copyright © 2021-23 algernon</Copyright>
<Product>$(Title)</Product>
<Version>1.0.1.1</Version>
<LibrariesPath>$(ProjectDir)/Libraries</LibrariesPath>
<ManagedDLLPath>$(MSBuildProgramFiles32)/Steam/steamapps/common/Cities_Skylines/Cities_Data/Managed</ManagedDLLPath>
<TreeAnarchyPath>$(MSBuildProgramFiles32)/Steam/steamapps/workshop/content/255710/2949127622</TreeAnarchyPath>
<AssemblySearchPaths>
$(AssemblySearchPaths);
$(ManagedDLLPath);
$(LibrariesPath);
$(TreeAnarchyPath);
</AssemblySearchPaths>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</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>
<PackageReference Include="UnifiedUILib" Version="2.2.12" />
<Reference Include="Assembly-CSharp" />
<Reference Include="ColossalManaged" />
<Reference Include="ICities" />
<Reference Include="UnityEngine" />
<Reference Include="EManagersLib.API" />
<Reference Include="TreeAnarchy" />
</ItemGroup>
<ItemGroup>
<_Libraries Include="$(ProjectDir)/Libraries/*.*" />
<_Translations Include="$(ProjectDir)/Translations/*.csv" />
<_Resources Include="$(ProjectDir)/Resources/*.*" />
<_PrefabTemplates Include="$(ProjectDir)/PrefabTemplates/*.*" />
<_ReplacementPacks Include="$(ProjectDir)/ReplacementPacks/*.*" />
</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="$(TargetDir)/UnifiedUILib.dll" DestinationFolder="$(DeployDir)" />
<Copy SourceFiles="@(_Libraries)" DestinationFolder="$(DeployDir)" />
<Copy SourceFiles="@(_Translations)" DestinationFolder="$(DeployDir)/Translations" />
<Copy SourceFiles="@(_Resources)" DestinationFolder="$(DeployDir)/Resources" />
<Copy SourceFiles="@(_PrefabTemplates)" DestinationFolder="$(DeployDir)" />
<Copy SourceFiles="@(_ReplacementPacks)" DestinationFolder="$(DeployDir)/ReplacementPacks" />
</Target>
<Import Project="..\AlgernonCommons\AlgernonCommonsPatchingShared.projitems" Label="Shared" />
</Project>