-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathMSTest.Extensions.csproj
More file actions
27 lines (23 loc) · 1.41 KB
/
MSTest.Extensions.csproj
File metadata and controls
27 lines (23 loc) · 1.41 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net45;netcoreapp3.0;net5.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<PackageId>MSTestEnhancer</PackageId>
<Authors>dotnet-campus</Authors>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Description>MSTestEnhancer helps you to write unit tests without naming any method. You can write method contract descriptions instead of writing confusing test method name when writing unit tests.</Description>
<PackageReleaseNotes>Add some assersion extensions.</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<Compile Update="Contracts\ContractTest.*.cs" AutoGen="True" DependentUpon="ContractTest.cs" />
<Compile Update="Contracts\ContractTestContext.*.cs" AutoGen="True" DependentUpon="ContractTestContext.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="dotnetCampus.GenericGenerator" Version="0.1.0" PrivateAssets="All" />
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="3.3.2" PrivateAssets="All" />
<PackageReference Include="MSTest.TestFramework" Version="2.2.1" />
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
</ItemGroup>
</Project>