-
Notifications
You must be signed in to change notification settings - Fork 662
Expand file tree
/
Copy pathGitVersion.Testing.csproj
More file actions
23 lines (23 loc) · 1.02 KB
/
GitVersion.Testing.csproj
File metadata and controls
23 lines (23 loc) · 1.02 KB
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>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="LibGit2Sharp" />
<PackageReference Include="System.IO.Abstractions" />
<PackageReference Include="System.Reflection.Metadata" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="GitVersion.BuildAgents.Tests" />
<InternalsVisibleTo Include="GitVersion.Configuration.Tests" />
<InternalsVisibleTo Include="GitVersion.Core.Tests" />
<InternalsVisibleTo Include="GitVersion.Output.Tests" />
<InternalsVisibleTo Include="GitVersion.App.Tests" />
<InternalsVisibleTo Include="GitVersion.MsBuild.Tests" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Collections.Immutable" VersionOverride="10.0.2" />
<ProjectReference Include="..\GitVersion.Core\GitVersion.Core.csproj" />
</ItemGroup>
</Project>