26 lines
1.1 KiB
XML
26 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<IsPackable>false</IsPackable>
|
|
<RootNamespace>Yavsc.Tests.Shared</RootNamespace>
|
|
<!--
|
|
Shared library of test fixtures (WebHostFixture, auth bypass,
|
|
etc.) consumed by both Yavsc.Org.Tests and Yavsc.Blogs.Tests.
|
|
Not a test project itself: no xUnit, no test runner, no
|
|
TestSdk. The consumer projects own the test execution and
|
|
inherit from the shared base classes.
|
|
-->
|
|
<AssemblyVersion>1.1.0.0</AssemblyVersion>
|
|
<FileVersion>1.1.0.0</FileVersion>
|
|
<InformationalVersion>1.1.0-beta.1+1.Branch.release-1.0.8-rc1.Sha.1167169aa89e1bf25290e9a152d27b357a500ab3</InformationalVersion>
|
|
<Version>1.1.0-beta.1</Version>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Hosting" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" />
|
|
<PackageReference Include="Microsoft.IdentityModel.Tokens" />
|
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" />
|
|
</ItemGroup>
|
|
</Project>
|