This repository has been archived by the owner on Dec 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Meta.props
47 lines (42 loc) · 1.71 KB
/
Meta.props
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
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<None Include="../../LICENSE" Pack="true" PackagePath="" />
<None Include="../../README.md" Pack="true" PackagePath="" />
<None Include="./ICON.png" Pack="true" PackagePath="" />
</ItemGroup>
<PropertyGroup>
<!-- Versioning -->
<Authors>NiTiS-Dev;NiTiSon</Authors>
<TargetFrameworks>net7.0</TargetFrameworks>
<Version>$(Version)</Version>
<AssemblyVersion>$(Version)</AssemblyVersion>
<PackageVersion Condition="$(VersionPrefix)==''">$(Version)</PackageVersion>
<PackageVersion Condition="$(VersionPrefix)!=''">$(Version)-$(VersionPrefix)</PackageVersion>
<!-- Package info -->
<TargetName>$(AssemblyName)</TargetName>
<Copyright>Copyright (c) NiTiS-Dev and contributors</Copyright>
<Summary>$(Description)</Summary>
<PackageIcon>./ICON.png</PackageIcon>
<RepositoryUrl>https://github.com/NiTiS-Dev/NiTiS.Math.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseFile>./LICENSE</PackageLicenseFile>
<PackageReadmeFile>./README.md</PackageReadmeFile>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<!-- C# Options -->
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<NoWarn>CS8981;IDE1006;IDE0049;IDE0054</NoWarn>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration)=='Release'">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup Condition="$(TargetFramework) != 'net48'">
<Compile Remove="**/*.net48.cs" />
</ItemGroup>
</Project>