-
Notifications
You must be signed in to change notification settings - Fork 3
/
IRSDKSharper.csproj
45 lines (37 loc) · 1.72 KB
/
IRSDKSharper.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net471;net6.0-windows7.0;net7.0-windows7.0</TargetFrameworks>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<RootNamespace>IRSDKSharper</RootNamespace>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Authors>Marvin Herbold</Authors>
<PackageProjectUrl>https://github.com/mherbold/IRSDKSharper</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Description>A better C# version of the iRacing SDK</Description>
<RepositoryUrl>https://github.com/mherbold/IRSDKSharper</RepositoryUrl>
<PackageTags>iRacing, IRSDK</PackageTags>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<Version>1.1.3</Version>
<Title>IRSDKSharper</Title>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net7.0-windows7.0|AnyCPU'">
<WarningLevel>5</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net7.0-windows7.0|AnyCPU'">
<WarningLevel>5</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net6.0-windows7.0|AnyCPU'">
<WarningLevel>5</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net6.0-windows7.0|AnyCPU'">
<WarningLevel>5</WarningLevel>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="YamlDotNet" Version="16.0.0" />
</ItemGroup>
<ItemGroup>
<None Include="LICENSE" Pack="True" PackagePath="" />
<None Include="README.md" Pack="True" PackagePath="" />
</ItemGroup>
</Project>