forked from linuxgurugamer/AutomatedScreenshots
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAutomatedScreenshots.csproj
More file actions
128 lines (125 loc) · 5.71 KB
/
AutomatedScreenshots.csproj
File metadata and controls
128 lines (125 loc) · 5.71 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{4627D050-5352-4091-B376-5ABBDDB73B8D}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>AutomatedScreenshots</RootNamespace>
<AssemblyName>AutomatedScreenshots</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<CustomCommands>
<CustomCommands>
<Command type="AfterBuild" command="deploy.bat" externalConsole="True" pauseExternalConsole="True" />
</CustomCommands>
</CustomCommands>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<CustomCommands>
<CustomCommands>
<Command type="AfterBuild" command="deploy.bat" externalConsole="True" />
<Command type="AfterBuild" command="buildRelease.bat" externalConsole="True" pauseExternalConsole="True" />
</CustomCommands>
</CustomCommands>
</PropertyGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="src\AssemblyVersion.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>AssemblyVersion.tt</DependentUpon>
</Compile>
<Compile Include="src\gui\AS_gui.cs" />
<Compile Include="src\AutomatedScreenshots.cs" />
<Compile Include="src\util\Configuration.cs" />
<Compile Include="src\util\Log.cs" />
<Compile Include="src\util\FileOperations.cs" />
<Compile Include="src\gui\ASInfoDisplay.cs" />
<Compile Include="src\SharedStuff\ToolbarWrapper.cs" />
<Compile Include="src\AS_ToolbarButtons.cs" />
<Compile Include="src\util\UIClass.cs" />
<Compile Include="src\util\Version.cs" />
<Compile Include="src\util\saveFilesHandler.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<None Include="src\Textures\AS_24.png" />
<None Include="src\Textures\AS_24_green.png" />
<None Include="src\Textures\AS_24_white.png" />
<None Include="src\Textures\AS_38.png" />
<None Include="src\Textures\AS_38_green.png" />
<None Include="src\Textures\AS_38_white.png" />
<None Include="src\Textures\E8c6GAzTE.jpg" />
<None Include="src\Textures\E8c6GAzTE.png" />
<None Include="automatedscreenshots.version" />
<None Include="README.md" />
<None Include="buildRelease.bat" />
<None Include="ChangeLog.txt" />
<None Include="src\Textures\Auto-24.png" />
<None Include="src\Textures\Auto-38.png" />
<None Include="src\Textures\Auto-negative-24.png" />
<None Include="src\Textures\Auto-negative-38.png" />
<None Include="src\Textures\Auto-save-24.png" />
<None Include="src\Textures\Auto-save-38.png" />
<None Include="src\Textures\Auto-snapshot-24.png" />
<None Include="src\Textures\Auto-snapshot-38.png" />
<None Include="src\Textures\Auto-snapshot-save-24.png" />
<None Include="src\Textures\Auto-snapshot-save-38.png" />
<None Include="deploy.bat" />
</ItemGroup>
<ItemGroup>
<Service Include="{508349B6-6B84-4DF5-91F0-309BEEBAD82D}" />
</ItemGroup>
<ItemGroup>
<Content Include="src\AssemblyVersion.tt">
<Generator>TextTemplatingFileGenerator</Generator>
<LastGenOutput>AssemblyVersion.cs</LastGenOutput>
</Content>
</ItemGroup>
<ItemGroup>
<Reference Include="Assembly-CSharp">
<HintPath>R:\KSP_1.2.2_dev\KSP_x64_Data\Managed\Assembly-CSharp.dll</HintPath>
</Reference>
<Reference Include="Assembly-CSharp-firstpass">
<HintPath>R:\KSP_1.2.2_dev\KSP_x64_Data\Managed\Assembly-CSharp-firstpass.dll</HintPath>
</Reference>
<Reference Include="System">
<HintPath>R:\KSP_1.2.2_dev\KSP_x64_Data\Managed\System.dll</HintPath>
</Reference>
<Reference Include="UnityEngine">
<HintPath>R:\KSP_1.2.2_dev\KSP_x64_Data\Managed\UnityEngine.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UI">
<HintPath>R:\KSP_1.2.2_dev\KSP_x64_Data\Managed\UnityEngine.UI.dll</HintPath>
</Reference>
</ItemGroup>
<PropertyGroup>
<PostBuildEvent>start /D D:\Users\jbb\github\AutomatedScreenshots\AutomatedScreenshots /WAIT deploy.bat
if $(ConfigurationName) == Release (
start /D D:\Users\jbb\github\AutomatedScreenshots\AutomatedScreenshots /WAIT buildRelease.bat
)
</PostBuildEvent>
</PropertyGroup>
<PropertyGroup>
<PreBuildEvent>set textTemplatingPath="%25CommonProgramFiles(x86)%25\Microsoft Shared\TextTemplating\$(VisualStudioVersion)\texttransform.exe"
if %25textTemplatingPath%25=="\Microsoft Shared\TextTemplating\$(VisualStudioVersion)\texttransform.exe" set textTemplatingPath="%25CommonProgramFiles%25\Microsoft Shared\TextTemplating\$(VisualStudioVersion)\texttransform.exe"
%25textTemplatingPath%25 "$(ProjectDir)src\AssemblyVersion.tt"
</PreBuildEvent>
</PropertyGroup>
</Project>