-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSmdn.Test.NUnit.Constraints.csproj
More file actions
30 lines (27 loc) · 1.15 KB
/
Smdn.Test.NUnit.Constraints.csproj
File metadata and controls
30 lines (27 loc) · 1.15 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
<!--
SPDX-FileCopyrightText: 2021 smdn <smdn@smdn.jp>
SPDX-License-Identifier: MIT
-->
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net462</TargetFrameworks>
<VersionPrefix>4.1.0</VersionPrefix>
<VersionSuffix></VersionSuffix>
<PackageValidationBaselineVersion>4.0.0</PackageValidationBaselineVersion>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<Nullable>warnings</Nullable>
<NoWarn>CS1591;$(NoWarn)</NoWarn> <!-- CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' -->
</PropertyGroup>
<PropertyGroup Label="assembly attributes">
<Description>NUnit constraints</Description>
<CopyrightYear>2021</CopyrightYear>
</PropertyGroup>
<PropertyGroup Label="package properties">
<PackageTags>NUnit;constraints</PackageTags>
</PropertyGroup>
<ItemGroup>
<ProjectOrPackageReference ReferencePackageVersion="[3.0.0,4.0.0)" Include="..\Smdn.Fundamental.ControlPicture\Smdn.Fundamental.ControlPicture.csproj" />
<PackageReference Include="NUnit" Version="[4.0.0,5.0.0)" />
<PackageReference Include="System.Memory" />
</ItemGroup>
</Project>