-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLSRutil.NET.Lite.csproj
52 lines (52 loc) · 2.09 KB
/
LSRutil.NET.Lite.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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFrameworks>net472;net5.0;net6.0;netcoreapp3.0</TargetFrameworks>
<LangVersion>7.3</LangVersion>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<RootNamespace>LSRutil</RootNamespace>
<Version>1.3.0</Version>
<Authors>OpenLSR Team</Authors>
<Copyright></Copyright>
<Company>OpenLSR</Company>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<RepositoryUrl>https://github.com/OpenLSR/LSRutil.NET</RepositoryUrl>
<Description>LSRutil.NET.Lite is a library for reading and writing the LEGO Stunt Rally .trk file format. It parses tracks into a format that is easy to work with, and allows people to make converters and parsers for the format.</Description>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<Compile Remove="AI\**" />
<Compile Remove="Examples\**" />
<Compile Remove="MVD\**" />
<Compile Remove="RF\**" />
<Compile Remove="RTB\**" />
<Compile Remove="XBF\**" />
<EmbeddedResource Remove="AI\**" />
<EmbeddedResource Remove="Examples\**" />
<EmbeddedResource Remove="MVD\**" />
<EmbeddedResource Remove="RF\**" />
<EmbeddedResource Remove="RTB\**" />
<EmbeddedResource Remove="XBF\**" />
<None Remove="AI\**" />
<None Remove="Examples\**" />
<None Remove="MVD\**" />
<None Remove="RF\**" />
<None Remove="RTB\**" />
<None Remove="XBF\**" />
<Compile Remove="AIData.cs" />
<Compile Remove="CorneringData.cs" />
<Compile Remove="Structures\MotoVideo.cs" />
<Compile Remove="Structures\ResourceArchive.cs" />
<Compile Remove="Structures\ResourceFile.cs" />
<Compile Remove="Structures\ResourceTable.cs" />
<None Include="LICENSE.md">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="DotNetZip" Version="1.15.0" />
</ItemGroup>
</Project>