generated from acidbubbles/vam-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 8
/
ColliderEditor.csproj
83 lines (83 loc) · 3.77 KB
/
ColliderEditor.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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<TargetFramework>net45</TargetFramework>
<OutputType>Library</OutputType>
<LangVersion>6</LangVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'Unity' ">
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<TargetFrameworkProfile>Unity Subset v3.5</TargetFrameworkProfile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCpu' ">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE;VAM_GT_1_20</DefineConstants>
<FileAlignment>4096</FileAlignment>
<DebugType>full</DebugType>
<PlatformTarget>x86</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
</PropertyGroup>
<ItemGroup>
<Reference Include="mscorlib" />
<Reference Include="System" />
<Reference Include="System.XML" />
<Reference Include="System.Core" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="UnityEngine">
<HintPath>../../../../VaM_Data/Managed/UnityEngine.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.CoreModule">
<HintPath>../../../../VaM_Data/Managed/UnityEngine.CoreModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UI">
<HintPath>../../../../VaM_Data/Managed/UnityEngine.UI.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UIModule">
<HintPath>../../../../VaM_Data/Managed/UnityEngine.UIModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.TextRenderingModule">
<HintPath>../../../../VaM_Data/Managed/UnityEngine.TextRenderingModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.AnimationModule">
<HintPath>../../../../VaM_Data/Managed/UnityEngine.AnimationModule.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.PhysicsModule">
<HintPath>../../../../VaM_Data/Managed/UnityEngine.PhysicsModule.dll</HintPath>
</Reference>
<Reference Include="Assembly-CSharp">
<HintPath>../../../../VaM_Data/Managed/Assembly-CSharp.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="src\Models\AutoColliderGroupModel.cs" />
<Compile Include="src\Models\AutoColliderModel.cs" />
<Compile Include="src\Models\BoxColliderModel.cs" />
<Compile Include="src\Models\CapsuleColliderModel.cs" />
<Compile Include="src\Models\ColliderContainerModelBase.cs" />
<Compile Include="src\Models\ColliderModel.cs" />
<Compile Include="src\Models\IModel.cs" />
<Compile Include="src\Models\ModelBase.cs" />
<Compile Include="src\Models\RigidbodyModel.cs" />
<Compile Include="src\Models\SphereColliderModel.cs" />
<Compile Include="src\ColliderEditor.cs" />
<Compile Include="src\ColliderPreviewConfig.cs" />
<Compile Include="src\ColorExtensions.cs" />
<Compile Include="src\ComponentExtensions.cs" />
<Compile Include="src\EditablesList.cs" />
<Compile Include="src\EnumerableExtensions.cs" />
<Compile Include="src\Filters.cs" />
<Compile Include="src\FloatExtensions.cs" />
<Compile Include="src\Group.cs" />
<Compile Include="src\JSONStorableExtensions.cs" />
<Compile Include="src\Mirrors.cs" />
<Compile Include="src\MaterialHelper.cs" />
<Compile Include="src\MigrationHelper.cs" />
<Compile Include="src\NameHelper.cs" />
<Compile Include="src\NaturalStringComparer.cs" />
<Compile Include="src\Presets.cs" />
<Compile Include="src\UIListener.cs" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Target Name="GenerateTargetFrameworkMonikerAttribute" />
</Project>