-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHelloDsl.csproj
More file actions
21 lines (20 loc) · 781 Bytes
/
Copy pathHelloDsl.csproj
File metadata and controls
21 lines (20 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>HelloDsl</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<!-- Path to the SharpBlocks CLI tool only required if a local tool is used instead of global -->
<SharpBlocksToolPath>dotnet tool run sharpblockscli</SharpBlocksToolPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SharpBlocks.Build" Version="1.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Content Include=".config/**" />
</ItemGroup>
</Project>