-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathBuild.csproj
More file actions
16 lines (16 loc) · 971 Bytes
/
Build.csproj
File metadata and controls
16 lines (16 loc) · 971 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<RunWorkingDirectory>$(MSBuildProjectDirectory)</RunWorkingDirectory>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="JetBrains.Annotations" Version="2025.2.4" />
<PackageReference Include="Cake.Frosting" Version="6.1.0" />
<ProjectReference Include="$(ProjectDir)../../../src/Cake.AzurePipelines.Module/Cake.AzurePipelines.Module.csproj" />
<ProjectReference Include="$(ProjectDir)../../../src/Cake.GitHubActions.Module/Cake.GitHubActions.Module.csproj" />
<ProjectReference Include="$(ProjectDir)../../../src/Cake.MyGet.Module/Cake.MyGet.Module.csproj" />
<ProjectReference Include="$(ProjectDir)../../../src/Cake.TeamCity.Module/Cake.TeamCity.Module.csproj" />
<ProjectReference Include="$(ProjectDir)../../../src/Cake.TravisCI.Module/Cake.TravisCI.Module.csproj" />
</ItemGroup>
</Project>