forked from GitTools/GitVersion
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGitVersion.Output.csproj
More file actions
29 lines (25 loc) · 1.11 KB
/
GitVersion.Output.csproj
File metadata and controls
29 lines (25 loc) · 1.11 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<DefineConstants>GITVERSION_OUTPUT</DefineConstants>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\GitVersion.Core\GitVersion.Core.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Remove="*\AddFormats\**\*.*" />
<Compile Remove="*\Templates\**\*.*" />
<Compile Include="..\GitVersion.Configuration\Attributes\JsonPropertyDescriptionAttribute.cs">
<Link>Attributes\JsonPropertyDescriptionAttribute.cs</Link>
</Compile>
<EmbeddedResource Include="*\AddFormats\**\*.*" />
<EmbeddedResource Include="*\Templates\**\*.*" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Options" VersionOverride="10.0.1" />
<InternalsVisibleTo Include="GitVersion.App.Tests" />
<InternalsVisibleTo Include="GitVersion.Core.Tests" />
<InternalsVisibleTo Include="GitVersion.MsBuild.Tests" />
<InternalsVisibleTo Include="GitVersion.Output.Tests" />
<InternalsVisibleTo Include="schema" />
</ItemGroup>
</Project>