-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGeekLearning.Testavior.csproj
30 lines (26 loc) · 1.54 KB
/
GeekLearning.Testavior.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Testavior is a set of NuGet libraries to help you develop Behavior Tests for ASP.NET Core.</Description>
<VersionPrefix>0.0.1</VersionPrefix>
<Authors>Geek Learning;Arnaud Auroux;Adrien Siffermann</Authors>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>GeekLearning.Testavior</AssemblyName>
<PackageId>GeekLearning.Testavior</PackageId>
<PackageTags>dotnet;AspNetCore;UnitTest;Test</PackageTags>
<PackageProjectUrl>https://github.com/geeklearningio/testavior</PackageProjectUrl>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\GeekLearning.Testavior.Configuration\GeekLearning.Testavior.Configuration.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication" Version="2.1.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Core" Version="2.1.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.1.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.ViewFeatures" Version="2.1.0" />
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="2.1.0" />
<PackageReference Include="Microsoft.Extensions.PlatformAbstractions" Version="1.1.0" />
</ItemGroup>
</Project>