-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathAcTools.ServerPlugin.DynamicConditions.csproj
123 lines (122 loc) · 6.31 KB
/
AcTools.ServerPlugin.DynamicConditions.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.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 Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{3478E974-CE23-4CC7-A41B-2E868F12378F}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>AcTools.ServerPlugin.DynamicConditions</RootNamespace>
<AssemblyName>AcTools.ServerPlugin.DynamicConditions</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</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' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="JetBrains.Annotations, Version=4242.42.42.42, Culture=neutral, PublicKeyToken=1010a0d8d6380325">
<HintPath>packages\JetBrains.Annotations.2022.1.0\lib\net20\JetBrains.Annotations.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Data" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.Xml" />
<Reference Include="System.Xml.Linq" />
</ItemGroup>
<ItemGroup>
<Compile Include="AcPlugins\AcServerPlugin.cs" />
<Compile Include="AcPlugins\AcServerPluginManager.cs" />
<Compile Include="AcPlugins\AcServerPluginManagerSettings.cs" />
<Compile Include="AcPlugins\CspCommands\CommandHandshakeIn.cs" />
<Compile Include="AcPlugins\CspCommands\CommandHandshakeOut.cs" />
<Compile Include="AcPlugins\CspCommands\CommandWeatherSetV1.cs" />
<Compile Include="AcPlugins\CspCommands\CommandWeatherSetV2.cs" />
<Compile Include="AcPlugins\CspCommands\CommandWeatherType.cs" />
<Compile Include="AcPlugins\CspCommands\CspCommandsUtils.cs" />
<Compile Include="AcPlugins\CspCommands\ICspCommand.cs" />
<Compile Include="AcPlugins\ExternalPluginInfo.cs" />
<Compile Include="AcPlugins\Helpers\AcMessageParser.cs" />
<Compile Include="AcPlugins\Helpers\DuplexUdpClient.cs" />
<Compile Include="AcPlugins\Helpers\ISessionReportHandler.cs" />
<Compile Include="AcPlugins\Helpers\TimestampedBytes.cs" />
<Compile Include="AcPlugins\Helpers\Vector3F.cs" />
<Compile Include="AcPlugins\Info\DriverInfo.cs" />
<Compile Include="AcPlugins\Info\IncidentInfo.cs" />
<Compile Include="AcPlugins\Info\LapInfo.cs" />
<Compile Include="AcPlugins\Info\SessionInfo.cs" />
<Compile Include="AcPlugins\Kunos\ACSProtocol.cs" />
<Compile Include="AcPlugins\Messages\MsgCarInfo.cs" />
<Compile Include="AcPlugins\Messages\MsgCarUpdate.cs" />
<Compile Include="AcPlugins\Messages\MsgChat.cs" />
<Compile Include="AcPlugins\Messages\MsgClientEvent.cs" />
<Compile Include="AcPlugins\Messages\MsgClientLoaded.cs" />
<Compile Include="AcPlugins\Messages\MsgConnectionClosed.cs" />
<Compile Include="AcPlugins\Messages\MsgError.cs" />
<Compile Include="AcPlugins\Messages\MsgLapCompleted.cs" />
<Compile Include="AcPlugins\Messages\MsgLapCompletedLeaderboardEnty.cs" />
<Compile Include="AcPlugins\Messages\MsgNewConnection.cs" />
<Compile Include="AcPlugins\Messages\MsgNewSession.cs" />
<Compile Include="AcPlugins\Messages\MsgSessionEnded.cs" />
<Compile Include="AcPlugins\Messages\MsgSessionInfo.cs" />
<Compile Include="AcPlugins\Messages\MsgVersionInfo.cs" />
<Compile Include="AcPlugins\Messages\RequestAdminCommand.cs" />
<Compile Include="AcPlugins\Messages\RequestBroadcastChat.cs" />
<Compile Include="AcPlugins\Messages\RequestCarInfo.cs" />
<Compile Include="AcPlugins\Messages\RequestKickUser.cs" />
<Compile Include="AcPlugins\Messages\RequestNextSession.cs" />
<Compile Include="AcPlugins\Messages\RequestRealtimeInfo.cs" />
<Compile Include="AcPlugins\Messages\RequestRestartSession.cs" />
<Compile Include="AcPlugins\Messages\RequestSendChat.cs" />
<Compile Include="AcPlugins\Messages\RequestSessionInfo.cs" />
<Compile Include="AcPlugins\Messages\RequestSetSession.cs" />
<Compile Include="AcPlugins\PluginMessage.cs" />
<Compile Include="Data\CommonAcConsts.cs" />
<Compile Include="Data\Game.cs" />
<Compile Include="Data\WeatherDescription.cs" />
<Compile Include="Data\WeatherType.cs" />
<Compile Include="ProgramParams.cs" />
<Compile Include="LiveConditionsServerPlugin.cs" />
<Compile Include="OpenWeatherApiProvider.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Utils\DateTimeExtension.cs" />
<Compile Include="Utils\Half.cs" />
<Compile Include="Utils\Logging.cs" />
<Compile Include="Utils\MainExecutingFile.cs" />
<Compile Include="Utils\MathUtils.cs" />
<Compile Include="Utils\TaskExtension.cs" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>