-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathAssemblyFixture.csproj
More file actions
23 lines (23 loc) · 953 Bytes
/
Copy pathAssemblyFixture.csproj
File metadata and controls
23 lines (23 loc) · 953 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageId>xunit.assemblyfixture</PackageId>
<RootNamespace>Xunit</RootNamespace>
<AssemblyName>xunit.assemblyfixture</AssemblyName>
<PackageReadmeFile>readme.md</PackageReadmeFile>
<Description>
Assembly-level shared state via IAssemblyFixture, just like built-in collection and class fixture state.
</Description>
<PackNone>true</PackNone>
<IsTestProject>false</IsTestProject>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="all" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="NuGetizer" Version="1.4.7" />
<PackageReference Include="xunit.abstractions" Version="2.0.3" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\readme.md" Link="readme.md" />
</ItemGroup>
</Project>