-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSmdn.Fundamental.Stream.Caching.csproj
28 lines (25 loc) · 1.32 KB
/
Smdn.Fundamental.Stream.Caching.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
<!--
SPDX-FileCopyrightText: 2021 smdn <smdn@smdn.jp>
SPDX-License-Identifier: MIT
-->
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net45;netstandard2.1;netstandard2.0;netstandard1.6;netstandard1.1</TargetFrameworks>
<VersionPrefix>3.0.2</VersionPrefix>
<VersionSuffix></VersionSuffix>
<PackageValidationBaselineVersion>3.0.0</PackageValidationBaselineVersion>
<RootNamespace/> <!-- empty the root namespace so that the namespace is determined only by the directory name, for code style rule IDE0030 -->
<NoWarn>CS1591;$(NoWarn)</NoWarn> <!-- CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member' -->
</PropertyGroup>
<PropertyGroup Label="assembly attributes">
<CopyrightYear>2021</CopyrightYear>
</PropertyGroup>
<PropertyGroup Label="package properties">
<PackageTags>stream;cache</PackageTags>
</PropertyGroup>
<ItemGroup>
<ProjectOrPackageReference ReferencePackageVersion="[3.0.3,4.0.0)" Include="..\Smdn.Fundamental.Exception\Smdn.Fundamental.Exception.csproj" />
<ProjectOrPackageReference ReferencePackageVersion="[3.1.4,4.0.0)" Include="..\Smdn.Fundamental.Shim\Smdn.Fundamental.Shim.csproj" Condition="$(TargetFramework.StartsWith('netstandard1'))" />
<PackageReference Include="System.Memory" />
</ItemGroup>
</Project>