-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerizedTesting.Mongo.csproj
More file actions
35 lines (30 loc) · 1.29 KB
/
DockerizedTesting.Mongo.csproj
File metadata and controls
35 lines (30 loc) · 1.29 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>DockerizedTesting.Mongo</PackageId>
<Authors>Joe Shearn</Authors>
<Product>DockerizedTesting.Mongo</Product>
<Company>Joe Shearn</Company>
<PackageProjectUrl>https://github.com/devjoes/DockerizedTesting</PackageProjectUrl>
<RepositoryUrl>https://github.com/devjoes/DockerizedTesting</RepositoryUrl>
<Description>A fixture for XUnit that start up a mongo DB to test your code with. Whilst it was built for XUnit it should be framework agnostic.</Description>
<PackageTags>docker mongodb mongo unittesting testing</PackageTags>
<PackageLicenseExpression></PackageLicenseExpression>
<PackageLicenseFile>license.txt</PackageLicenseFile>
<Version>1.2.0</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Docker.DotNet" Version="3.125.2" />
<PackageReference Include="MongoDB.Driver" Version="2.19.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DockerizedTesting\DockerizedTesting.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="license.txt">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>