Skip to content

Commit e9a715d

Browse files
Added Full debug symbols, updated MSBuild.Sdk.Extras.
1 parent 8e49905 commit e9a715d

File tree

4 files changed

+26
-12
lines changed

4 files changed

+26
-12
lines changed

ColorCode.Core/ColorCode.Core.csproj

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,14 @@
1010
<PackageTags>ColorCode Syntax Highlighting SyntaxHighlighting Formatting</PackageTags>
1111
</PropertyGroup>
1212

13+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
14+
<DebugType>full</DebugType>
15+
<DebugSymbols>true</DebugSymbols>
16+
</PropertyGroup>
17+
18+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
19+
<DebugType>full</DebugType>
20+
<DebugSymbols>true</DebugSymbols>
21+
</PropertyGroup>
22+
1323
</Project>

ColorCode.UWP/ColorCode.UWP.csproj

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="MSBuild.Sdk.Extras">
32

43
<PropertyGroup>
54
<TargetFramework>uap10.0</TargetFramework>
@@ -10,17 +9,17 @@
109
<PackageTags>ColorCode Syntax Highlighting SyntaxHighlighting Formatting UWP RichTextBlock Document InlineCollection</PackageTags>
1110
</PropertyGroup>
1211

13-
<ItemGroup>
14-
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform" Version="6.1.4" />
15-
</ItemGroup>
12+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
13+
<DebugType>full</DebugType>
14+
<DebugSymbols>true</DebugSymbols>
15+
</PropertyGroup>
1616

17-
<ItemGroup>
18-
<ProjectReference Include="..\ColorCode.Core\ColorCode.Core.csproj" />
19-
</ItemGroup>
17+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
18+
<DebugType>full</DebugType>
19+
<DebugSymbols>true</DebugSymbols>
20+
</PropertyGroup>
2021

2122
<ItemGroup>
22-
<PackageReference Update="MSBuild.Sdk.Extras" Version="1.5.4" />
23+
<ProjectReference Include="..\ColorCode.Core\ColorCode.Core.csproj" />
2324
</ItemGroup>
24-
25-
<Import Project="$(MSBuildSDKExtrasTargets)" Condition="Exists('$(MSBuildSDKExtrasTargets)')" />
2625
</Project>

Tests/ColorCode.UWPTests/ColorCode.UWPTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
</ItemGroup>
127127
<ItemGroup>
128128
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform">
129-
<Version>6.0.2</Version>
129+
<Version>6.1.7</Version>
130130
</PackageReference>
131131
</ItemGroup>
132132
<ItemGroup>

global.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"msbuild-sdks": {
3+
"MSBuild.Sdk.Extras": "1.6.55"
4+
}
5+
}

0 commit comments

Comments
 (0)