-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
36 lines (29 loc) · 1.1 KB
/
Directory.Build.props
File metadata and controls
36 lines (29 loc) · 1.1 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
30
31
32
33
34
35
36
<Project>
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<Version>0.8</Version>
<DefineConstants>PREVIEW</DefineConstants>
<Product>Marklet</Product>
<Authors>Andrew Thomas</Authors>
<Copyright>Andrew Thomas © 2025-2026</Copyright>
<Company>Kuiper Zone</Company>
<Language>en-US</Language>
<IsTrimmable>true</IsTrimmable>
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
<IsAotCompatible>true</IsAotCompatible>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<!-- RELEASE ONLY -->
<DebugType>None</DebugType>
<DebugSymbols>false</DebugSymbols>
<StripSymbols>true</StripSymbols>
<Optimize>true</Optimize>
</PropertyGroup>
<!-- dotnet build -t:nuke -->
<Target Name="nuke">
<RemoveDir Directories="$(ProjectDir)$(BaseOutputPath)" />
<RemoveDir Directories="$(ProjectDir)$(BaseIntermediateOutputPath)" />
</Target>
</Project>