-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathMajSimai.csproj
More file actions
27 lines (24 loc) · 1.03 KB
/
Copy pathMajSimai.csproj
File metadata and controls
27 lines (24 loc) · 1.03 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.1;net5.0;net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageId>Lingfeng-bbben.$(AssemblyName)</PackageId>
<Authors>bbben;Lezi;Moying</Authors>
<Company>Majdata</Company>
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<Version>2.2.1</Version>
<IsTrimmable>True</IsTrimmable>
<IsAotCompatible>True</IsAotCompatible>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<NativeLib>Shared</NativeLib>
</PropertyGroup>
<PropertyGroup Condition="'$(PublishAot)' == 'true'">
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<TargetFrameworks>net7.0;net8.0;net9.0</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.1.2" />
</ItemGroup>
</Project>