-
Notifications
You must be signed in to change notification settings - Fork 1
/
engenious.csproj
50 lines (43 loc) · 2.19 KB
/
engenious.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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Description>engenious graphics framework core assembly, similar to XNA/MonoGame.</Description>
<DocumentationFile>$(BaseIntermediateOutputPath)/engenious.xml</DocumentationFile>
<Nullable>enable</Nullable>
<LitGitIncludeProjectUrl>true</LitGitIncludeProjectUrl>
<LiCoOutput>NOTICE</LiCoOutput>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
<PackageReference Include="LiCo" Version="0.2.0.3-alpha" PrivateAssets="all" />
<PackageReference Include="LitGit" Version="0.2.0.58-alpha" PrivateAssets="all" />
<PackageReference Include="NVorbis" Version="0.10.4" Exclude="compile" PrivateAssets="compile" />
<PackageReference Include="OpenTK" Version="4.5.0" />
<PackageReference Include="SixLabors.ImageSharp" Version="2.1.3" />
<PackageReference Include="System.Memory" Version="4.5.4" />
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.0.0" PrivateAssets="compile" />
</ItemGroup>
<ItemGroup>
<None Include="LICENSE" Pack="true" PackagePath="" />
<None Remove="engenious.Nuget.props.template" />
<None Remove="Properties\AssemblyInfo.cs.template" />
<None Update="Utility\Capture.tt">
<Generator>TextTemplatingFileGenerator</Generator>
<LastGenOutput>Capture.cs</LastGenOutput>
</None>
</ItemGroup>
<ItemGroup>
<Compile Update="Utility\Capture.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Capture.tt</DependentUpon>
</Compile>
</ItemGroup>
</Project>