-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathNFive.SDK.Core.csproj
93 lines (93 loc) · 4.44 KB
/
NFive.SDK.Core.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
<?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>{C1DE80C7-579E-4D48-AAB8-37F5C1484F86}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NFive.SDK.Core</RootNamespace>
<AssemblyName>NFive.SDK.Core.net</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AllowedReferenceRelatedFileExtensions>
.allowedextension
</AllowedReferenceRelatedFileExtensions>
</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>
</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>
</PropertyGroup>
<ItemGroup>
<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="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="System" />
<Reference Include="System.ComponentModel.DataAnnotations" />
</ItemGroup>
<ItemGroup>
<Compile Include="Configuration\LocaleConfiguration.cs" />
<Compile Include="Configuration\SteamId.cs" />
<Compile Include="Controllers\ControllerConfiguration.cs" />
<Compile Include="Controllers\IControllerConfiguration.cs" />
<Compile Include="Diagnostics\ILogger.cs" />
<Compile Include="Diagnostics\LogLevel.cs" />
<Compile Include="Extensions\StringExtensions.cs" />
<Compile Include="Extensions\NumericExtensions.cs" />
<Compile Include="Extensions\PositionExtensions.cs" />
<Compile Include="Extensions\Vector2Extensions.cs" />
<Compile Include="Extensions\Vector3Extensions.cs" />
<Compile Include="Helpers\GuidGenerator.cs" />
<Compile Include="Helpers\MathHelpers.cs" />
<Compile Include="Input\ControllerInput.cs" />
<Compile Include="Input\InputMethod.cs" />
<Compile Include="Input\InputModifier.cs" />
<Compile Include="Input\InputControl.cs" />
<Compile Include="Input\KeyCode.cs" />
<Compile Include="Locales\ILocaleCatalog.cs" />
<Compile Include="Models\Audio\RadioStation.cs" />
<Compile Include="Models\Color.cs" />
<Compile Include="Models\IdentityModel.cs" />
<Compile Include="Models\IIdentityModel.cs" />
<Compile Include="Models\Player\Session.cs" />
<Compile Include="Models\Player\User.cs" />
<Compile Include="Models\Position.cs" />
<Compile Include="Models\Vector2.cs" />
<Compile Include="Models\Vector3.cs" />
<Compile Include="PluginAttribute.cs" />
<Compile Include="Plugins\Client.cs" />
<Compile Include="Plugins\Plugin.cs" />
<Compile Include="Plugins\Name.cs" />
<Compile Include="Plugins\Repository.cs" />
<Compile Include="Plugins\Server.cs" />
<Compile Include="Plugins\Version.cs" />
<Compile Include="Plugins\VersionRange.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Events\CoreEvents.cs" />
<Compile Include="Utilities\Serializer.cs" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>