forked from GitTools/GitVersion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGitVersion.Configuration.csproj
34 lines (30 loc) · 1.34 KB
/
GitVersion.Configuration.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
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<None Remove="SupportedWorkflows\TrunkBased\v1.yml" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\GitVersion.Core\GitVersion.Core.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="YamlDotNet" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="SupportedWorkflows\GitFlow\v1.yml" />
<EmbeddedResource Include="SupportedWorkflows\GitHubFlow\v1.yml" />
<EmbeddedResource Include="SupportedWorkflows\TrunkBased\v1.yml" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="schema" />
<InternalsVisibleTo Include="gitversion" />
<InternalsVisibleTo Include="GitVersion.App" />
<InternalsVisibleTo Include="GitVersion.LibGit2Sharp" />
<InternalsVisibleTo Include="GitVersion.MsBuild" />
<InternalsVisibleTo Include="GitVersion.Output" />
<InternalsVisibleTo Include="GitVersion.BuildAgents.Tests" />
<InternalsVisibleTo Include="GitVersion.Core.Tests" />
<InternalsVisibleTo Include="GitVersion.Configuration.Tests" />
<InternalsVisibleTo Include="GitVersion.Output.Tests" />
<InternalsVisibleTo Include="GitVersion.App.Tests" />
<InternalsVisibleTo Include="GitVersion.MsBuild.Tests" />
</ItemGroup>
</Project>