-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathHexa.NET.Math.csproj
More file actions
64 lines (53 loc) · 2.56 KB
/
Hexa.NET.Math.csproj
File metadata and controls
64 lines (53 loc) · 2.56 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net10.0;net9.0;net8.0;net7.0;net6.0;netstandard2.1;netstandard2.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Configurations>Debug;Release;Minimal</Configurations>
<RootNamespace>Hexa.NET.Mathematics</RootNamespace>
<LangVersion>12</LangVersion>
<IsAotCompatible>true</IsAotCompatible>
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
<EnableSingleFileAnalyzer>true</EnableSingleFileAnalyzer>
<EnableAotAnalyzer>true</EnableAotAnalyzer>
<PackageId>Hexa.NET.Math</PackageId>
<AssemblyName>Hexa.NET.Math</AssemblyName>
<AssemblyVersion>2.0.8</AssemblyVersion>
<Description>The Math library for HexaEngine.</Description>
<PackageTags>HexaEngine Math C# .NET DotNet Sharp Windows macOS</PackageTags>
<Authors>Juna</Authors>
<Copyright>Copyright (c) 2022 Juna Meinhold</Copyright>
<PackageProjectUrl>https://github.com/HexaEngine/Hexa.NET.Math</PackageProjectUrl>
<RepositoryUrl>https://github.com/HexaEngine/Hexa.NET.Math</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>icon.png</PackageIcon>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' != 'Minimal'">
<PackageVersion>2.0.8</PackageVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Minimal'">
<PackageVersion>2.0.8-minimal</PackageVersion>
</PropertyGroup>
<ItemGroup>
<Content Include="../LICENSE.txt" Pack="true" PackagePath="\" />
<Content Include="../README.md" Pack="true" PackagePath="\" />
<Content Include="../icon.png" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.1'">
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
<PackageReference Include="Microsoft.Bcl.Numerics" Version="9.0.0" />
<PackageReference Include="IndexRange" Version="1.0.3" />
<PackageReference Include="Microsoft.Bcl.HashCode" Version="6.0.0" />
</ItemGroup>
</Project>