-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathDsl.csproj
More file actions
18 lines (18 loc) · 744 Bytes
/
Dsl.csproj
File metadata and controls
18 lines (18 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<OutputType>Exe</OutputType>
<GenerateAssemblyInfo>True</GenerateAssemblyInfo>
<GenerateTargetFrameworkAttribute>False</GenerateTargetFrameworkAttribute>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DefineConstants>TRACE;DEBUG;FULL_VERSION</DefineConstants>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup>
<StartupObject>Dsl.MainClass</StartupObject>
</PropertyGroup>
</Project>