-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSpaceEngineersScripts.csproj
More file actions
71 lines (71 loc) · 3.13 KB
/
SpaceEngineersScripts.csproj
File metadata and controls
71 lines (71 loc) · 3.13 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
<?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)' == '' ">x86</Platform>
<ProductVersion>10.0.0</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{1E30B88F-B241-4889-8D77-26012B4481B1}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>SpaceEngineersScripts</RootNamespace>
<AssemblyName>SpaceEngineersScripts</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<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>
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<Reference Include="Sandbox.Common">
<HintPath>..\SpaceEngineers\Sources\Sandbox.Common\bin\x86\Debug\Sandbox.Common.dll</HintPath>
</Reference>
<Reference Include="VRage.Game">
<HintPath>..\SpaceEngineers\Sources\VRage.Game\bin\x86\Debug\VRage.Game.dll</HintPath>
</Reference>
<Reference Include="nunit.framework, Version=2.6.0.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77">
<Private>False</Private>
</Reference>
<Reference Include="nunit.core.interfaces, Version=2.6.0.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77">
<Private>False</Private>
</Reference>
<Reference Include="nunit.core, Version=2.6.0.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77">
<Private>False</Private>
</Reference>
<Reference Include="VRage.Math">
<HintPath>..\SpaceEngineers\Sources\VRage.Math\bin\x86\Debug\VRage.Math.dll</HintPath>
</Reference>
<Reference Include="VRage">
<HintPath>..\SpaceEngineers\Sources\VRage\bin\x86\Debug\VRage.dll</HintPath>
</Reference>
<Reference Include="VRage.Library">
<HintPath>..\SpaceEngineers\Sources\VRage\bin\x86\Debug\VRage.Library.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="AdvancedPowerControl\AdvancedPowerControl.cs" />
<Compile Include="AdvancedPowerControl\AdvancedPowerControlWrapper.cs" />
<Compile Include="AdvancedPowerControl\AdvancedPowerControlTest.cs" />
<Compile Include="Common\StubGridTerminalSystem.cs" />
<Compile Include="Common\StubTerminalBlock.cs" />
</ItemGroup>
<ItemGroup>
<Folder Include="AdvancedPowerControl\" />
<Folder Include="Common\" />
</ItemGroup>
</Project>