-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimpleCameraSetting.csproj
More file actions
79 lines (79 loc) · 3.44 KB
/
SimpleCameraSetting.csproj
File metadata and controls
79 lines (79 loc) · 3.44 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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{0CD5546D-979F-4FEF-94A0-CCC1ADE26879}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>SimpleCameraSetting</RootNamespace>
<AssemblyName>SimpleCameraSetting</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release-1.5|AnyCPU'">
<OutputPath>SimpleCameraSetting\1.5\Assemblies\</OutputPath>
<DefineConstants>TRACE;RIMWORLD15</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release-1.6|AnyCPU'">
<OutputPath>SimpleCameraSetting\1.6\Assemblies\</OutputPath>
<DefineConstants>TRACE;RIMWORLD16</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
</PropertyGroup>
<ItemGroup>
<Reference Include="BetterKeybinding">
<HintPath>.\BetterKeybinding.dll</HintPath>
</Reference>
<Reference Include="System.Core" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
</ItemGroup>
<ItemGroup>
<Compile Include="CameraConfigPatch.cs" />
<Compile Include="CameraDriverOnGUIPatch.cs" />
<Compile Include="CameraMapConfigUpdatePatch.cs" />
<Compile Include="DrawSelectionBracketForPatch.cs" />
<Compile Include="ModSetting.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Refs.cs" />
<Compile Include="SilhouetteUtilityPatch.cs" />
<Compile Include="SimpleCameraSetting.cs" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)'=='Release-1.5'">
<PackageReference Include="Krafs.Rimworld.Ref">
<Version>1.6.4633</Version>
<PrivateAssets>all</PrivateAssets>
<ExcludeAssets>runtime</ExcludeAssets>
<IncludeAssets>compile; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup Condition="'$(Configuration)'=='Release-1.6'">
<PackageReference Include="Krafs.Rimworld.Ref">
<Version>1.5.4409</Version>
<PrivateAssets>all</PrivateAssets>
<ExcludeAssets>runtime</ExcludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Krafs.Rimworld.Ref">
<Version>1.6.4566</Version>
</PackageReference>
<PackageReference Include="Lib.Harmony">
<Version>2.4.1</Version>
</PackageReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>