-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathNFive.SDK.Client.csproj
103 lines (103 loc) · 5.11 KB
/
NFive.SDK.Client.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?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>{22732BBC-D264-4BC1-81D7-D44F5E6AFB3D}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NFive.SDK.Client</RootNamespace>
<AssemblyName>NFive.SDK.Client.net</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>false</DebugSymbols>
<DebugType>none</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowedReferenceRelatedFileExtensions>
.allowedextension
</AllowedReferenceRelatedFileExtensions>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugSymbols>false</DebugSymbols>
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowedReferenceRelatedFileExtensions>
.allowedextension
</AllowedReferenceRelatedFileExtensions>
</PropertyGroup>
<ItemGroup>
<Reference Include="CitizenFX.Core.Client, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>packages\CitizenFX.Core.Client.1.0.4410\lib\net45\CitizenFX.Core.Client.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="JetBrains.Annotations, Version=2021.2.0.0, Culture=neutral, PublicKeyToken=1010a0d8d6380325, processorArchitecture=MSIL">
<HintPath>packages\JetBrains.Annotations.2021.2.0\lib\net20\JetBrains.Annotations.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Microsoft.CSharp" />
<Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>packages\Newtonsoft.Json.12.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="NFive.SDK.Core.net, Version=0.1.0.62, Culture=neutral, processorArchitecture=MSIL">
<HintPath>packages\NFive.SDK.Core.0.1.0.62\lib\net452\NFive.SDK.Core.net.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="NGettext, Version=0.6.1.0, Culture=neutral, PublicKeyToken=08d3d1c89dfd2985, processorArchitecture=MSIL">
<HintPath>packages\NGettext.0.6.6\lib\net45\NGettext.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Drawing" />
</ItemGroup>
<ItemGroup>
<Compile Include="ClientPluginAttribute.cs" />
<Compile Include="Commands\ICommandManager.cs" />
<Compile Include="Communications\ICommunicationReceive.cs" />
<Compile Include="Communications\ICommunicationReceiveClient.cs" />
<Compile Include="Communications\ICommunicationReceiveServer.cs" />
<Compile Include="Communications\ICommunicationTarget.cs" />
<Compile Include="Communications\ICommunicationTransmit.cs" />
<Compile Include="Communications\ICommunicationTransmitClient.cs" />
<Compile Include="Communications\ICommunicationTransmitServer.cs" />
<Compile Include="Configuration\ClientConfiguration.cs" />
<Compile Include="Communications\ICommunicationManager.cs" />
<Compile Include="Communications\ICommunicationMessage.cs" />
<Compile Include="Events\ClientEvents.cs" />
<Compile Include="Events\FiveMClientEvents.cs" />
<Compile Include="Events\ITickManager.cs" />
<Compile Include="Events\SessionEvents.cs" />
<Compile Include="Extensions\ColorExtensions.cs" />
<Compile Include="Extensions\PedExtensions.cs" />
<Compile Include="Extensions\PlayerExtensions.cs" />
<Compile Include="Extensions\VectorExtensions.cs" />
<Compile Include="Input\Hotkey.cs" />
<Compile Include="Input\Input.cs" />
<Compile Include="Interface\INuiManager.cs" />
<Compile Include="Interface\IOverlayManager.cs" />
<Compile Include="Interface\Overlay.cs" />
<Compile Include="Interface\OverlayEventArgs.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="SDK.cs" />
<Compile Include="Locales\LocaleCatalog.cs" />
<Compile Include="Services\Service.cs" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config">
<SubType>Designer</SubType>
</None>
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>