-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathStackCleaner.csproj
More file actions
75 lines (64 loc) · 3.05 KB
/
StackCleaner.csproj
File metadata and controls
75 lines (64 loc) · 3.05 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageReleaseNotes>
Fixed a bug where an empty stack trace would cause an exception.
Added formatting for event accessors and explicit implementations.
Property type for properties now shows instead of the return type of the accessor (except for indexers).
Added a target for net40 and net45 and removed unnecessary targets for net461, netstandard2.1, and net5.0, consolidating to netstandard2.0.
</PackageReleaseNotes>
<TargetFrameworks>netstandard2.0;net45;net40</TargetFrameworks>
<AssemblyTitle>StackCleaner</AssemblyTitle>
<Product>StackCleaner</Product>
<OutputPath>bin\$(Configuration)\</OutputPath>
<Nullable>enable</Nullable>
<LangVersion>13.0</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Version>1.5.1</Version>
<AssemblyVersion>$(Version).0</AssemblyVersion>
<FileVersion>$(Version).0</FileVersion>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageId>DanielWillett.StackCleaner</PackageId>
<Title>Stack Trace Cleaner</Title>
<Company>Daniel Willett</Company>
<Authors>Daniel Willett</Authors>
<Description>Stack trace formatter for dotnet written and formatted in C#.</Description>
<PackageProjectUrl>https://github.com/DanielWillett/StackCleaner</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/DanielWillett/StackCleaner.git</RepositoryUrl>
<PackageTags>stack trace;debugging;error;logging;logger;console</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<DebugType>portable</DebugType>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>
<PropertyGroup Condition="exists('C:\Users\danny\OneDrive\Documents\Strong Name Keys\DanielWillett.StackCleaner\DanielWillett.StackCleaner.snk')">
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>C:\Users\danny\OneDrive\Documents\Strong Name Keys\DanielWillett.StackCleaner\DanielWillett.StackCleaner.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="UnityEngine">
<HintPath>$(SolutionDir)Libraries/UnityEngine.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Remove="StackCleaner.Tests\**" />
<EmbeddedResource Remove="StackCleaner.Tests\**" />
<None Remove="StackCleaner.Tests\**" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
<None Include="$(SolutionDir)Promo/icon.png" Pack="true" PackagePath="\" />
</ItemGroup>
<!-- Build Configurations -->
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DebugType>full</DebugType>
<Optimize>false</Optimize>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DebugType>portable</DebugType>
<Optimize>true</Optimize>
<Deterministic>true</Deterministic>
</PropertyGroup>
</Project>