-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
34 lines (25 loc) · 1006 Bytes
/
Directory.Build.props
File metadata and controls
34 lines (25 loc) · 1006 Bytes
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
<Project>
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<ImplicitUsings>true</ImplicitUsings>
<McrDotNetVersion>8.0.*</McrDotNetVersion>
</PropertyGroup>
<PropertyGroup Condition="$(TargetFramework) == 'net9.0'">
<McrDotNetVersion>9.0.0</McrDotNetVersion>
</PropertyGroup>
<PropertyGroup Condition="$(TargetFramework) == 'net10.0'">
<McrDotNetVersion>10.0.0</McrDotNetVersion>
</PropertyGroup>
<!--Package Info-->
<PropertyGroup>
<PackageIdPrefix>Cuture.Http</PackageIdPrefix>
<Authors>Stratos</Authors>
<Version>2.11.0</Version>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/cuture/Cuture.Http</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>$(PackageProjectUrl)</RepositoryUrl>
<PackageTags>http request httprequest httpclient httphelper</PackageTags>
</PropertyGroup>
</Project>