-
Notifications
You must be signed in to change notification settings - Fork 161
Expand file tree
/
Copy pathNLog.Web.AspNetCore.Tests.csproj
More file actions
41 lines (41 loc) · 2.04 KB
/
Copy pathNLog.Web.AspNetCore.Tests.csproj
File metadata and controls
41 lines (41 loc) · 2.04 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
31
32
33
34
35
36
37
38
39
40
41
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net462;net8.0;net10.0</TargetFrameworks>
<Version>1.2.3.2</Version>
<AssemblyVersion>1.2.3.0</AssemblyVersion>
<FileVersion>1.2.3.1</FileVersion>
<InformationalVersion>1.2.3.2</InformationalVersion>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
<IsPackable>false</IsPackable>
<DebugType Condition=" '$(TargetFramework)' == 'net462' ">Full</DebugType>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>../../NLog.snk</AssemblyOriginatorKeyFile>
<RootNamespace>NLog.Web.Tests</RootNamespace>
<DefineConstants>$(DefineConstants);ASP_NET_CORE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.1' or '$(TargetFramework)' == 'net462' ">
<RuntimeFrameworkVersion>2.1.*</RuntimeFrameworkVersion>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\NLog.Web.AspNetCore\NLog.Web.AspNetCore.csproj" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.6.0" />
<PackageReference Include="NSubstitute" Version="5.3.0" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.1' or '$(TargetFramework)' == 'net462' ">
<PackageReference Include="System.ValueTuple" Version="4.6.1" />
<PackageReference Include="Microsoft.AspNetCore" Version="2.3.0" />
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel.Core" Version="2.3.6" />
<PackageReference Include="System.Formats.Asn1" Version="6.0.1" />
</ItemGroup>
<ItemGroup>
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\Shared\**\*.cs" />
</ItemGroup>
</Project>