-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
25 lines (25 loc) · 1.06 KB
/
Directory.Build.props
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
<Project>
<PropertyGroup>
<!-- Use Windows PDBs so OpenCover works -->
<DebugType Condition=" '$(Configuration)' == 'Debug' ">Full</DebugType>
<DebugType Condition=" '$(Configuration)' == 'Release' ">pdbonly</DebugType>
<!-- Use latest C# version. -->
<LangVersion>latest</LangVersion>
<!-- Use .NET 8+ build structure -->
<UseArtifactsOutput>true</UseArtifactsOutput>
<ArtifactsPath>$(MSBuildThisFileDirectory).artifacts</ArtifactsPath>
<!-- For WASM debugging -->
<DebugSymbols>true</DebugSymbols>
<DebugType>embedded</DebugType>
<!-- Common package properties -->
<Authors>martycook</Authors>
<Company>CodeGator</Company>
<Copyright>Copyright © 2002 - 2025 by CodeGator. All rights reserved.</Copyright>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
<!-- Don't Freak Azure Pipelines Out -->
<ErrorOnDuplicatePublishOutputFiles>false</ErrorOnDuplicatePublishOutputFiles>
</PropertyGroup>
</Project>