forked from scripthookvdotnet/scripthookvdotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExamples.csproj
52 lines (52 loc) · 2.22 KB
/
Examples.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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration>Release</Configuration>
<Platform>AnyCPU</Platform>
<ProjectGuid>{A717AD5D-C5B5-4769-BD40-F14C09F269BB}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>GTA</RootNamespace>
<AssemblyName>Examples</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
</PropertyGroup>
<!-- Global compilation settings -->
<PropertyGroup>
<PlatformTarget>x64</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<!-- Debug compilation settings -->
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<OutputPath>bin\Debug\scripts</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<Optimize>false</Optimize>
<DebugType>pdbonly</DebugType>
</PropertyGroup>
<!-- Release compilation settings -->
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<OutputPath>bin\Release\scripts</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
</ItemGroup>
<ItemGroup>
<Compile Include="examples\EuphoriaDemo.cs" />
<Compile Include="examples\ExitVehicle.cs" />
<Compile Include="examples\IndicatorControl.cs" />
<Compile Include="examples\ScriptInstance.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="source\scripting_v3\ScriptHookVDotNet_APIv3.csproj">
<Project>{d68e6cb7-fc70-41c9-bd53-d79552b37f0e}</Project>
<Name>ScriptHookVDotNet3</Name>
<Private>False</Private>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>