forked from andreharv/NetworkExtensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTransit.Addon.Deploy.csproj
92 lines (89 loc) · 4.24 KB
/
Transit.Addon.Deploy.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{7DFBABEB-DED8-4E16-8AA5-B38C3EF64305}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Transit.Addon.Deploy</RootNamespace>
<AssemblyName>Transit.Addon.Deploy</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Transit.Addon\Transit.Addon.csproj">
<Project>{80C47696-4D41-4BB6-9CAE-C477FE528ADF}</Project>
<Name>Transit.Addon</Name>
</ProjectReference>
<ProjectReference Include="..\Transit.Addon.RoadExtensions\Transit.Addon.RoadExtensions.csproj">
<Project>{19FA21B2-39CC-4B90-BE7E-B6BDCCB09208}</Project>
<Name>Transit.Addon.RoadExtensions</Name>
</ProjectReference>
<ProjectReference Include="..\Transit.Framework.ExtensionPoints\Transit.Framework.ExtensionPoints.csproj">
<Project>{2e44eca3-d750-4115-b16b-fca94c49bba0}</Project>
<Name>Transit.Framework.ExtensionPoints</Name>
</ProjectReference>
<ProjectReference Include="..\Transit.Framework.Hooks\Transit.Framework.Hooks.csproj">
<Project>{a700f186-b123-45b5-adfe-b865df5a0f39}</Project>
<Name>Transit.Framework.Hooks</Name>
</ProjectReference>
<ProjectReference Include="..\Transit.Framework.Redirection\Transit.Framework.Redirection.csproj">
<Project>{7dcc08ef-dc85-47a4-bd6f-79fc52c7ef13}</Project>
<Name>Transit.Framework.Redirection</Name>
</ProjectReference>
<ProjectReference Include="..\Transit.Framework\Transit.Framework.csproj">
<Project>{8891467e-c88e-46b0-96f9-4413df6dc205}</Project>
<Name>Transit.Framework</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PostBuildEvent>forfiles /P "$(ProjectDir)bin\$(ConfigurationName)" /S /M *.CRP /C "cmd /c move @file "$(ProjectDir)bin\$(ConfigurationName)""
del "$(TargetDir)Transit.Addon.Deploy.dll"
del "$(TargetDir)*.pdb"
rd /s /q "$(TargetDir)\Buildings"
if $(ConfigurationName) == Debug (
rd /s /q "%25LOCALAPPDATA%25\Colossal Order\Cities_Skylines\Addons\Mods\Transit Addons Mod"
mkdir "%25LOCALAPPDATA%25\Colossal Order\Cities_Skylines\Addons\Mods\Transit Addons Mod"
xcopy /q /y /e "$(ProjectDir)bin\$(ConfigurationName)" "%25LOCALAPPDATA%25\Colossal Order\Cities_Skylines\Addons\Mods\Transit Addons Mod"
) else (
rd /s /q "D:\Games\Steam\SteamApps\workshop\content\255710\543703997"
mkdir "D:\Games\Steam\SteamApps\workshop\content\255710\543703997"
xcopy /q /y /e "$(ProjectDir)bin\$(ConfigurationName)" "D:\Games\Steam\SteamApps\workshop\content\255710\543703997"
)</PostBuildEvent>
</PropertyGroup>
<PropertyGroup>
<PreBuildEvent>del /f /q "$(TargetDir)"</PreBuildEvent>
</PropertyGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>