-
Notifications
You must be signed in to change notification settings - Fork 0
/
Average.Server.csproj
107 lines (107 loc) · 4.81 KB
/
Average.Server.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
104
105
106
107
<?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>
<LangVersion>preview</LangVersion>
<Nullable>enable</Nullable>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{E41E3907-2C60-49F6-845E-1BBA5548E794}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Average.Server</RootNamespace>
<AssemblyName>average.server.net</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<LangVersion>8.0</LangVersion>
<Nullable>enable</Nullable>
<FileAlignment>512</FileAlignment>
<Deterministic>false</Deterministic>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>false</DebugSymbols>
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\AverageFrameworkServer\resources\avg\</OutputPath>
<DefineConstants>TRACE;DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>C:\Users\Bubbl\Documents\GitHub\redmdev\resources\avg</OutputPath>
<DefineConstants>TRACE;REDM_RELEASE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>AnyCPU</PlatformTarget>
<DocumentationFile>
</DocumentationFile>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Reference Include="CitizenFX.Server.Core">
<HintPath>..\..\Averagge Framework TestServer\resources\avg\libs\CitizenFX.Server.Core.dll</HintPath>
</Reference>
<Reference Include="MySql.Data">
<HintPath>..\..\AverageFrameworkServer\resources\avg\libs\MySql.Data.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\AverageFrameworkServer\resources\avg\libs\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Net" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Managers\CharacterManager.cs" />
<Compile Include="Managers\CommandManager.cs" />
<Compile Include="Configuration.cs" />
<Compile Include="Managers\DoorManager.cs" />
<Compile Include="Managers\EnterpriseManager.cs" />
<Compile Include="Managers\EventManager.cs" />
<Compile Include="Managers\ExportManager.cs" />
<Compile Include="Managers\CfxManager.cs" />
<Compile Include="Data\SQL.cs" />
<Compile Include="Data\SQLConnection.cs" />
<Compile Include="Main.cs" />
<Compile Include="Managers\JobManager.cs" />
<Compile Include="Managers\PermissionManager.cs" />
<Compile Include="Managers\SaveManager.cs" />
<Compile Include="Managers\StorageManager.cs" />
<Compile Include="Managers\UserManager.cs" />
<Compile Include="InternalPlugin.cs" />
<Compile Include="PluginLoader.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Managers\SyncManager.cs" />
<Compile Include="Managers\ThreadManager.cs" />
<Compile Include="Managers\RequestManager.cs" />
<Compile Include="Managers\RequestInternalManager.cs" />
<Compile Include="Utilities\Directory.cs" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SDK.Server\SDK.Server.csproj">
<Project>{ca6c1198-c97c-4e5e-bafd-a8c90133a9a7}</Project>
<Name>SDK.Server</Name>
</ProjectReference>
<ProjectReference Include="..\SDK.Shared\SDK.Shared.csproj">
<Project>{3f43345a-6a6e-4be0-8889-26346add06a3}</Project>
<Name>SDK.Shared</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>