-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdotnet-http.csproj
More file actions
29 lines (25 loc) · 1.3 KB
/
dotnet-http.csproj
File metadata and controls
29 lines (25 loc) · 1.3 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<LangVersion>preview</LangVersion>
<RootNamespace>Samicpp.Http</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>dotnet-http</AssemblyName>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<!-- <IsPackable>false</IsPackable> -->
<!-- <Version>2.2.3</Version> -->
</PropertyGroup>
<PropertyGroup>
<!-- <RuntimeIdentifiers>win-x64;win-x86;win-arm64;linux-x64;linux-musl-x64;linux-musl-arm64;linux-arm;linux-arm64;linux-bionic-arm64;linux-loongarch64;osx-x64;osx-arm64;ios-arm64;iossimulator-arm64;iossimulator-x64;android-arm64;android-arm;android-x64;android-x86</RuntimeIdentifiers> -->
<!-- <PublishTrimmed>false</PublishTrimmed> -->
<!-- <RuntimeIdentifiers>win-x64;win-x86;linux-x64;linux-arm;linux-arm64;osx-x64;osx-arm64;android-arm64</RuntimeIdentifiers> -->
<!-- <PublishSingleFile>true</PublishSingleFile> -->
<!-- <SelfContained>true</SelfContained> -->
</PropertyGroup>
<ItemGroup>
<PackageReference Include="xunit" Version="2.9.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
</ItemGroup>
</Project>