-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathBuild.csproj
More file actions
28 lines (24 loc) · 964 Bytes
/
Build.csproj
File metadata and controls
28 lines (24 loc) · 964 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
28
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<RunWorkingDirectory>$(MSBuildProjectDirectory)</RunWorkingDirectory>
<RootNamespace>StreamSDR.Build</RootNamespace>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Compile Remove="tools\**" />
<EmbeddedResource Remove="tools\**" />
<None Remove="tools\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Cake.CMake" Version="1.4.0" />
<PackageReference Include="Cake.Docker" Version="1.3.0" />
<PackageReference Include="Cake.Frosting" Version="5.0.0" />
<PackageReference Include="Cake.MinVer" Version="4.0.0" />
<PackageReference Include="vswhere" Version="3.1.7">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>