-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathModuleManager.csproj
More file actions
61 lines (61 loc) · 2.68 KB
/
ModuleManager.csproj
File metadata and controls
61 lines (61 loc) · 2.68 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
<?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>
<ProductVersion>10.0.0</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{02C8E3AF-69F9-4102-AB60-DD6DE60662D3}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>ModuleManager</RootNamespace>
<AssemblyName>ModuleManager</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>True</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>False</Optimize>
<OutputPath>..</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>False</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
<Optimize>True</Optimize>
<OutputPath>bin\Release\</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>False</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Compile Include="moduleManager.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="SaveGameFixer.cs" />
</ItemGroup>
<Import Condition="exists('$(MSBuildProjectDirectory)\LocalProperties.props')" Project="$(MSBuildProjectDirectory)\LocalProperties.props"/>
<ItemGroup>
<Reference Include="System" />
<Reference Include="Assembly-CSharp">
<HintPath>$(KspDir)\KSP_Data\Managed\Assembly-CSharp.dll</HintPath>
<SpecificVersion>False</SpecificVersion>
<Private>False</Private>
</Reference>
<Reference Include="UnityEngine">
<HintPath>$(KspDir)\KSP_Data\Managed\UnityEngine.dll</HintPath>
<SpecificVersion>False</SpecificVersion>
<Private>False</Private>
</Reference>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Target Name="BeforeBuild">
<Error Condition="'$(KspDir)' == ''" Text="Unable to find KSP assemblies. Create a property KspDir in LocalProperties.props or setup an environmental variable KspDir that points to the KSP installation directory."/>
</Target>
<PropertyGroup>
<PostBuildEvent>
echo copying to "$(KspDir)\GameData\"
copy "$(TargetPath)" "$(KspDir)\GameData\"
</PostBuildEvent>
</PropertyGroup>
</Project>