-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPocketCartPlus.csproj
More file actions
25 lines (23 loc) · 1.07 KB
/
PocketCartPlus.csproj
File metadata and controls
25 lines (23 loc) · 1.07 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
<Project Sdk="Microsoft.NET.Sdk">
<!-- Primary configuration for the project -->
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<AssemblyName>com.github.darmuh.PocketCartPlus</AssemblyName>
<AssemblyTitle>PocketCartPlus</AssemblyTitle>
<Version>0.5.2</Version>
<AssemblyVersion>0.5.2</AssemblyVersion>
<!-- Use latest C# version. -->
<LangVersion>latest</LangVersion>
<!-- See: https://learn.microsoft.com/en-us/dotnet/csharp/nullable-references -->
<Nullable>enable</Nullable>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<!-- Build, and other generated files go nicely into artifacts/ directory. -->
<!-- Enable debug symbols. This will show source code line numbers in stack traces. -->
<DebugSymbols>true</DebugSymbols>
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<!-- Substitute full path to this directory with ./, hiding it from debug symbols. -->
<PathMap>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)'))=./</PathMap>
</PropertyGroup>
</Project>