-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerizedTesting.csproj
More file actions
27 lines (23 loc) · 992 Bytes
/
DockerizedTesting.csproj
File metadata and controls
27 lines (23 loc) · 992 Bytes
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>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Description>Base classes for https://github.com/devjoes/DockerizedTesting</Description>
<Authors>Joe Shearn</Authors>
<PackageProjectUrl>https://github.com/devjoes/DockerizedTesting</PackageProjectUrl>
<RepositoryUrl>https://github.com/devjoes/DockerizedTesting</RepositoryUrl>
<PackageLicenseFile>license.txt</PackageLicenseFile>
<Version>1.2.1</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Docker.DotNet" Version="3.125.2" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="3.1.4" />
<PackageReference Include="SharpZipLib" Version="1.3.3" />
</ItemGroup>
<ItemGroup>
<None Include="..\DockerizedTesting.Mongo\license.txt">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>