forked from malahx/ZeroMiniAVC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ZeroMiniAVC.csproj
73 lines (73 loc) · 2.83 KB
/
ZeroMiniAVC.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
<?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>{4E1D91EA-10EF-4112-8975-B23E362FF429}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>ZeroMiniAVC</RootNamespace>
<AssemblyName>ZeroMiniAVC</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<CustomCommands>
<CustomCommands>
<Command type="AfterBuild" command="./install.sh" />
</CustomCommands>
</CustomCommands>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Optimize>true</Optimize>
<OutputPath>bin\</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<CustomCommands>
<CustomCommands>
<Command type="AfterBuild" command="./install.sh" />
</CustomCommands>
</CustomCommands>
</PropertyGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="ZeroMiniAVC.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="Assembly-CSharp">
<HintPath>..\lib\Managed\Assembly-CSharp.dll</HintPath>
</Reference>
<Reference Include="System">
<HintPath>..\lib\Managed\System.dll</HintPath>
</Reference>
<Reference Include="UnityEngine">
<HintPath>..\lib\Managed\UnityEngine.dll</HintPath>
</Reference>
<Reference Include="UnityEngine.UI">
<HintPath>..\lib\Managed\UnityEngine.UI.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Include="COPYING" />
<None Include="README.md" />
<None Include="ZeroMiniAVC.version" />
<None Include="install.sh" />
<None Include="GameData\ZeroMiniAVC\ZeroMiniAVC.version" />
<None Include="GameData\ZeroMiniAVC\COPYING" />
<None Include="GameData\ZeroMiniAVC\README.md" />
<None Include="GameData\ZeroMiniAVC\Plugins\ZeroMiniAVC.dll" />
<None Include="GameData\ZeroMiniAVC\Config.cfg" />
<None Include="Config.cfg" />
</ItemGroup>
<ItemGroup>
<Folder Include="GameData\ZeroMiniAVC\Plugins\" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>