Skip to content

Commit cff4905

Browse files
committed
Refactor Project and Build related files
- Refactor Project files - Refactor Markdown files - Remove unnecessary files - Use latest NuGet and config - Fixup UAP/Windows TFM versions
1 parent 0b976f9 commit cff4905

File tree

18 files changed

+80
-94
lines changed

18 files changed

+80
-94
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
[Rr]eleases/
1919
x64/
2020
x86/
21-
build/
2221
bld/
2322
[Bb]in/
2423
[Oo]bj/

Microsoft.Toolkit.Diagnostics/Microsoft.Toolkit.Diagnostics.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
</When>
4545

4646
<When Condition="'$(TargetFramework)' == 'net5.0'">
47+
<!-- .NET 5 SDK doesn't define "NETSTANDARD2_1_OR_GREATER" until a later revision -->
4748
<PropertyGroup>
4849
<DefineConstants>NETSTANDARD2_1_OR_GREATER</DefineConstants>
4950
</PropertyGroup>

Microsoft.Toolkit.HighPerformance/Microsoft.Toolkit.HighPerformance.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
- Box&lt;T&gt;: a type mapping boxed value types and exposing some utility and high performance methods.
2424
- Ref&lt;T&gt;: a stack-only struct that can store a reference to a value of a specified type.
2525
- NullableRef&lt;T&gt;: a stack-only struct similar to Ref&lt;T&gt;, which also supports nullable references.
26-
</Description>
26+
</Description>
2727
<PackageTags>Parallel;Performance;Unsafe;Span;Memory;String;StringPool;Array;Stream;Buffer;Extensions;Helpers</PackageTags>
2828
</PropertyGroup>
2929

Microsoft.Toolkit.Mvvm.SourceGenerators/Microsoft.Toolkit.Mvvm.SourceGenerators.csproj

+6-11
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,13 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netstandard2.0</TargetFramework>
5-
<LangVersion>9.0</LangVersion>
6-
<Nullable>enable</Nullable>
4+
<Nullable>Enable</Nullable>
75
<IsPackable>false</IsPackable>
6+
<TargetFramework>netstandard2.0</TargetFramework>
87
</PropertyGroup>
98

109
<ItemGroup>
11-
<Compile Remove="EmbeddedResources\INotifyPropertyChanged.cs" />
12-
<Compile Remove="EmbeddedResources\NotNullAttribute.cs" />
13-
<Compile Remove="EmbeddedResources\NotNullIfNotNullAttribute.cs" />
14-
<Compile Remove="EmbeddedResources\ObservableObject.cs" />
15-
<Compile Remove="EmbeddedResources\ObservableRecipient.cs" />
10+
<Compile Remove="EmbeddedResources\*.cs" />
1611
</ItemGroup>
1712

1813
<ItemGroup>
@@ -34,12 +29,12 @@
3429
</ItemGroup>
3530

3631
<ItemGroup>
37-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.9.0" PrivateAssets="all" Pack="false" />
32+
<AdditionalFiles Include="AnalyzerReleases.Shipped.md" />
33+
<AdditionalFiles Include="AnalyzerReleases.Unshipped.md" />
3834
</ItemGroup>
3935

4036
<ItemGroup>
41-
<AdditionalFiles Include="AnalyzerReleases.Shipped.md" />
42-
<AdditionalFiles Include="AnalyzerReleases.Unshipped.md" />
37+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.9.0" PrivateAssets="All" Pack="false" />
4338
</ItemGroup>
4439

4540
</Project>

Microsoft.Toolkit.Mvvm/Microsoft.Toolkit.Mvvm.csproj

+7-5
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,18 @@
3535
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
3636
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="5.0.0" />
3737
</ItemGroup>
38-
38+
3939
<!-- Source generator project reference for packing -->
4040
<ItemGroup>
4141
<ProjectReference Include="..\Microsoft.Toolkit.Mvvm.SourceGenerators\Microsoft.Toolkit.Mvvm.SourceGenerators.csproj" PrivateAssets="all" />
4242
</ItemGroup>
4343

44-
<!-- Target to pack the source generator into the "analyzers\dotnet\cs" package folder.
45-
The condition is set to .NET Standard 2.0 so that the analyzer is only added to the package
46-
when that target is being built, instead of once for all three targets, which would fail.
47-
It will still be available for all targets anyway though, as analyzers don't have a target. -->
44+
<!--
45+
Target to pack the source generator into the "analyzers\dotnet\cs" package folder.
46+
The condition is set to .NET Standard 2.0 so that the analyzer is only added to the package
47+
when that target is being built, instead of once for all three targets, which would fail.
48+
It will still be available for all targets anyway though, as analyzers don't have a target.
49+
-->
4850
<Target Name="CopyAnalyzerProjectReferencesToPackage" DependsOnTargets="BuildOnlySettings;ResolveReferences" Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
4951
<ItemGroup>
5052
<TfmSpecificPackageFile Include="@(ReferenceCopyLocalPaths->WithMetadataValue('ReferenceSourceTarget', 'ProjectReference')->WithMetadataValue('PrivateAssets', 'All'))">

Microsoft.Toolkit.Uwp.Notifications/Microsoft.Toolkit.Uwp.Notifications.csproj

+29-28
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,58 @@
11
<Project Sdk="MSBuild.Sdk.Extras">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard1.4;uap10.0.19041;net461;netcoreapp3.1;net5.0;net5.0-windows10.0.17763.0;native</TargetFrameworks>
5-
<DefineConstants>$(DefineConstants);NETFX_CORE</DefineConstants>
4+
<TargetFrameworks>netstandard1.4;uap10.0.16299;net461;netcoreapp3.1;net5.0;net5.0-windows10.0.17763;native</TargetFrameworks>
65
<NuspecFile>Microsoft.Toolkit.Uwp.Notifications.nuspec</NuspecFile>
76
</PropertyGroup>
87

9-
<PropertyGroup Condition="'$(TargetFramework)' == 'uap10.0.19041'">
10-
<TargetPlatformVersion>10.0.19041.0</TargetPlatformVersion>
11-
<TargetPlatformMinVersion>10.0.16299.0</TargetPlatformMinVersion>
8+
<PropertyGroup Condition="'$(TargetFramework)' == 'uap10.0.16299' or '$(TargetFramework)' == 'native'">
9+
<TargetPlatformVersion>10.0.$(TargetPlatformRevision).0</TargetPlatformVersion>
10+
</PropertyGroup>
11+
12+
<PropertyGroup Condition="'$(TargetFramework)' != 'uap10.0.16299'">
13+
<DefineConstants>$(DefineConstants);NETFX_CORE</DefineConstants>
1214
</PropertyGroup>
1315

14-
<PropertyGroup Condition="'$(TargetFramework)' == 'net461' or '$(TargetFramework)' == 'netcoreapp3.1' or '$(TargetFramework)' == 'net5.0-windows10.0.17763.0'">
15-
<!-- Define the WINDOWS_UWP conditional symbol, since the Windows.Data.Xml and the Windows.UI.Notification namespaces are available -->
16+
<PropertyGroup Condition="'$(TargetFramework)' == 'net461' or '$(TargetFramework)' == 'netcoreapp3.1' or '$(TargetFramework)' == 'net5.0-windows10.0.17763'">
17+
<!-- Define the WINDOWS_UWP conditional symbol, since the 'Windows.Data.Xml' and the 'Windows.UI.Notification' namespaces are available -->
1618
<DefineConstants>$(DefineConstants);WINDOWS_UWP;WIN32</DefineConstants>
1719
</PropertyGroup>
1820

1921
<PropertyGroup Condition="'$(TargetFramework)' == 'native'">
20-
<OutputType>winmdobj</OutputType>
22+
<!-- Build -->
2123
<DebugType>Full</DebugType>
24+
<OutputType>WinMDObj</OutputType>
25+
<AssetTargetFallback>uap10.0</AssetTargetFallback>
26+
<!-- Targets -->
2227
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
23-
<!-- Workaround for issue NuGet/Home#8388; change behavior during NuGet restore time vs. final build to avoid NuGet conflict in VS 2019 -->
24-
<NuGetTargetMoniker Condition="'$(DesignTimeBuild)' == 'true'">native</NuGetTargetMoniker>
25-
<NuGetTargetMoniker Condition="'$(DesignTimeBuild)' != 'true'">UAP,Version=v10.0</NuGetTargetMoniker>
26-
<PackageTargetFallback>uap10.0</PackageTargetFallback>
27-
<TargetPlatformVersion>10.0.19041.0</TargetPlatformVersion>
2828
<TargetPlatformMinVersion>10.0.10240.0</TargetPlatformMinVersion>
29-
<DefineConstants Condition="'$(DisableImplicitFrameworkDefines)' != 'true'">$(DefineConstants);WINDOWS_UWP;WINRT</DefineConstants>
30-
<CopyLocalLockFileAssemblies Condition="'$(CopyLocalLockFileAssemblies)' == ''">false</CopyLocalLockFileAssemblies>
3129
<TargetFrameworkIdentifier>.NETCore</TargetFrameworkIdentifier>
3230
<TargetFrameworkVersion>v5.0</TargetFrameworkVersion>
31+
<!-- Misc -->
32+
<CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
33+
<DefineConstants>$(DefineConstants);WINDOWS_UWP;WINRT</DefineConstants>
3334
<LanguageTargets>$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets</LanguageTargets>
34-
<ExtrasImplicitPlatformPackageIsPrivate>true</ExtrasImplicitPlatformPackageIsPrivate>
35-
36-
<!-- Need to override the built-in implicit defines for UAP or it'll be NETCORE5_0. This makes it UAP10_0_10240_0 to match the rest -->
37-
<ImplicitFrameworkDefine Condition="'$(DisableImplicitFrameworkDefines)' != 'true'">UAP$(TargetPlatformMinVersion.Replace('.', '_'))</ImplicitFrameworkDefine>
38-
<DisableImplicitFrameworkDefines Condition="'$(DisableImplicitFrameworkDefines)' != 'true'">true</DisableImplicitFrameworkDefines>
35+
<!-- Workaround for issue NuGet/Home#8388; Restore conflict in VS IDE 2019 during DesignTime vs BuildTime. -->
36+
<NuGetTargetMoniker Condition="'$(DesignTimeBuild)' != 'true'">UAP,Version=v10.0</NuGetTargetMoniker>
37+
<NuGetTargetMoniker Condition="'$(DesignTimeBuild)' == 'true'">Native,Version=v0.0</NuGetTargetMoniker>
3938
</PropertyGroup>
4039

4140
<ItemGroup>
4241
<None Include="Microsoft.Toolkit.Uwp.Notifications.targets" Pack="true" PackagePath="build\native" />
4342
</ItemGroup>
4443

45-
<!-- In order to support .NET Native, we need to include an appropriate .rd.xml for UWP (remove from everything else) -->
46-
<ItemGroup Condition="'$(TargetFramework)' != 'uap10.0.19041' and '$(TargetFramework)' != 'native'">
44+
<!-- In order to support .NET Native, we need to include an appropriate '.rd.xml' for UWP (remove from everything else) -->
45+
<ItemGroup Condition="'$(TargetFramework)' != 'uap10.0.16299' and '$(TargetFramework)' != 'native'">
4746
<EmbeddedResource Remove="Properties\Microsoft.Toolkit.Uwp.Notifications.rd.xml" />
4847
</ItemGroup>
4948

50-
<!-- Desktop Win32 apps -->
49+
<!-- For Desktop Win32 apps' WinRT APIs support -->
5150
<ItemGroup Condition="'$(TargetFramework)' == 'net461' or '$(TargetFramework)' == 'netcoreapp3.1'">
52-
<!-- Reference Windows SDK NuGet of correct target platform version -->
5351
<PackageReference Include="Microsoft.Windows.SDK.Contracts" Version="10.0.19041.1" />
5452
</ItemGroup>
5553

56-
<!-- The .NET Core desktop apps also need the Registry NuGet package and System.Reflection.Emit for generating COM class dynamically -->
57-
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1' or '$(TargetFramework)' == 'net5.0-windows10.0.17763.0'">
54+
<!-- The .NET Core desktop apps also need the Registry NuGet package and 'System.Reflection.Emit' for generating COM class dynamically -->
55+
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1' or '$(TargetFramework)' == 'net5.0-windows10.0.17763'">
5856
<PackageReference Include="Microsoft.Win32.Registry" Version="4.7.0" />
5957
<PackageReference Include="System.Reflection.Emit" Version="4.7.0" />
6058
<PackageReference Include="System.Drawing.Common" Version="4.7.0" />
@@ -64,12 +62,15 @@
6462
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform" Version="$(ExtrasUwpMetaPackageVersion)" PrivateAssets="All" IsImplicitlyDefined="true" />
6563
</ItemGroup>
6664

67-
<!-- Native (C++) doesn't need 'System.ValueTuple' (plus it's incompatible with this package) -->
65+
<!-- Native (C++) does not need 'System.ValueTuple' (plus it is incompatible with this package) -->
6866
<ItemGroup Condition="'$(TargetFramework)' != 'native'">
6967
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
7068
</ItemGroup>
7169

72-
<!-- Set the nuspec properties. Dependent on version which isn't updated till after 'GetBuildVersion'. Condition ensures we only set once since this runs multiple times for each target. -->
70+
<!--
71+
Set the nuspec properties. Dependent on version which is not updated till after 'GetBuildVersion'.
72+
Condition ensures we only set once since this runs multiple times for each target.
73+
-->
7374
<Target Name="SetNuspecProperties" AfterTargets="GetBuildVersion">
7475
<PropertyGroup Condition="'$(NuspecProperties)' == ''">
7576
<NuspecProperties>buildOutput=bin\$(Configuration);version=$(Version)</NuspecProperties>

Microsoft.Toolkit.Uwp.Notifications/Microsoft.Toolkit.Uwp.Notifications.nuspec

+7-7
Original file line numberDiff line numberDiff line change
@@ -61,19 +61,19 @@
6161
<file src="$buildOutput$\net5.0\Microsoft.Toolkit.Uwp.Notifications.dll" target="lib\net5.0\Microsoft.Toolkit.Uwp.Notifications.dll" />
6262
<file src="$buildOutput$\net5.0\Microsoft.Toolkit.Uwp.Notifications.pdb" target="lib\net5.0\Microsoft.Toolkit.Uwp.Notifications.pdb" />
6363
<file src="$buildOutput$\net5.0\Microsoft.Toolkit.Uwp.Notifications.xml" target="lib\net5.0\Microsoft.Toolkit.Uwp.Notifications.xml" />
64-
<file src="$buildOutput$\net5.0-windows10.0.17763.0\Microsoft.Toolkit.Uwp.Notifications.dll" target="lib\net5.0-windows10.0.17763\Microsoft.Toolkit.Uwp.Notifications.dll" />
65-
<file src="$buildOutput$\net5.0-windows10.0.17763.0\Microsoft.Toolkit.Uwp.Notifications.pdb" target="lib\net5.0-windows10.0.17763\Microsoft.Toolkit.Uwp.Notifications.pdb" />
66-
<file src="$buildOutput$\net5.0-windows10.0.17763.0\Microsoft.Toolkit.Uwp.Notifications.xml" target="lib\net5.0-windows10.0.17763\Microsoft.Toolkit.Uwp.Notifications.xml" />
64+
<file src="$buildOutput$\net5.0-windows10.0.17763\Microsoft.Toolkit.Uwp.Notifications.dll" target="lib\net5.0-windows10.0.17763\Microsoft.Toolkit.Uwp.Notifications.dll" />
65+
<file src="$buildOutput$\net5.0-windows10.0.17763\Microsoft.Toolkit.Uwp.Notifications.pdb" target="lib\net5.0-windows10.0.17763\Microsoft.Toolkit.Uwp.Notifications.pdb" />
66+
<file src="$buildOutput$\net5.0-windows10.0.17763\Microsoft.Toolkit.Uwp.Notifications.xml" target="lib\net5.0-windows10.0.17763\Microsoft.Toolkit.Uwp.Notifications.xml" />
6767
<file src="$buildOutput$\netcoreapp3.1\Microsoft.Toolkit.Uwp.Notifications.dll" target="lib\netcoreapp3.1\Microsoft.Toolkit.Uwp.Notifications.dll" />
6868
<file src="$buildOutput$\netcoreapp3.1\Microsoft.Toolkit.Uwp.Notifications.pdb" target="lib\netcoreapp3.1\Microsoft.Toolkit.Uwp.Notifications.pdb" />
6969
<file src="$buildOutput$\netcoreapp3.1\Microsoft.Toolkit.Uwp.Notifications.xml" target="lib\netcoreapp3.1\Microsoft.Toolkit.Uwp.Notifications.xml" />
7070
<file src="$buildOutput$\netstandard1.4\Microsoft.Toolkit.Uwp.Notifications.dll" target="lib\netstandard1.4\Microsoft.Toolkit.Uwp.Notifications.dll" />
7171
<file src="$buildOutput$\netstandard1.4\Microsoft.Toolkit.Uwp.Notifications.pdb" target="lib\netstandard1.4\Microsoft.Toolkit.Uwp.Notifications.pdb" />
7272
<file src="$buildOutput$\netstandard1.4\Microsoft.Toolkit.Uwp.Notifications.xml" target="lib\netstandard1.4\Microsoft.Toolkit.Uwp.Notifications.xml" />
73-
<file src="$buildOutput$\uap10.0.19041\Microsoft.Toolkit.Uwp.Notifications.dll" target="lib\uap10.0.16299\Microsoft.Toolkit.Uwp.Notifications.dll" />
74-
<file src="$buildOutput$\uap10.0.19041\Microsoft.Toolkit.Uwp.Notifications.pdb" target="lib\uap10.0.16299\Microsoft.Toolkit.Uwp.Notifications.pdb" />
75-
<file src="$buildOutput$\uap10.0.19041\Microsoft.Toolkit.Uwp.Notifications.pri" target="lib\uap10.0.16299\Microsoft.Toolkit.Uwp.Notifications.pri" />
76-
<file src="$buildOutput$\uap10.0.19041\Microsoft.Toolkit.Uwp.Notifications.xml" target="lib\uap10.0.16299\Microsoft.Toolkit.Uwp.Notifications.xml" />
73+
<file src="$buildOutput$\uap10.0.16299\Microsoft.Toolkit.Uwp.Notifications.dll" target="lib\uap10.0.16299\Microsoft.Toolkit.Uwp.Notifications.dll" />
74+
<file src="$buildOutput$\uap10.0.16299\Microsoft.Toolkit.Uwp.Notifications.pdb" target="lib\uap10.0.16299\Microsoft.Toolkit.Uwp.Notifications.pdb" />
75+
<file src="$buildOutput$\uap10.0.16299\Microsoft.Toolkit.Uwp.Notifications.pri" target="lib\uap10.0.16299\Microsoft.Toolkit.Uwp.Notifications.pri" />
76+
<file src="$buildOutput$\uap10.0.16299\Microsoft.Toolkit.Uwp.Notifications.xml" target="lib\uap10.0.16299\Microsoft.Toolkit.Uwp.Notifications.xml" />
7777
<file src="$buildOutput$\native\Microsoft.Toolkit.Uwp.Notifications.pdb" target="lib\native\Microsoft.Toolkit.Uwp.Notifications.pdb" />
7878
<file src="$buildOutput$\native\Microsoft.Toolkit.Uwp.Notifications.pri" target="lib\native\Microsoft.Toolkit.Uwp.Notifications.pri" />
7979
<file src="$buildOutput$\native\Microsoft.Toolkit.Uwp.Notifications.winmd" target="lib\native\Microsoft.Toolkit.Uwp.Notifications.winmd" />
+21-19
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,38 @@
1-
Welcome to the Notifications section of the toolkit! This contains the Notifications library, including the object model for tile, toast, and badge XML (previously called NotificationsExtensions).
1+
# UWP Notifications
2+
3+
Welcome to the Notifications section of the toolkit! This contains the Notifications library, including the object model for tile, toast, and badge XML (previously called `NotificationsExtensions`).
24

35
## Where should I add new code?
4-
Any code for generating notifications should be written in the Microsoft.Toolkit.Uwp.Notifications project.
6+
7+
Any code for generating notifications should be written in the `Microsoft.Toolkit.Uwp.Notifications` project.
58

69
If there's UWP-specific code, use the appropriate `#ifdef`, `WINDOWS_UWP` or `WINRT`.
710

811
## What are all the projects for?
9-
All the code is contained on the Microsoft.Toolkit.Uwp.Notifications project.
10-
11-
It outputs `netstandard1.4`, `uap10.0`, `native` for WinRT, and netcoreapp for .Net Core projects. The UWP library is only for C#, while the WinRT library is a Windows Runtime Component for C++.
1212

13+
All the code is contained on the `Microsoft.Toolkit.Uwp.Notifications` project.
1314

14-
| C# | C++ |
15-
| ---------------- | ------------------- |
16-
| NET Standard 1.4 | UWP WinRT Component |
17-
| UWP C# DLL | |
18-
| .Net Core DLL | |
19-
15+
It outputs `netstandard1.4`, `uap10.0`, `native` for WinRT, and `netcoreapp3.1` for .NET Core projects. The UWP library is only for C#, while the WinRT library is a Windows Runtime Component for C++.
2016

17+
| C# | C++ |
18+
| --------------------- | ------------------- |
19+
| .NET Standard Library | UWP WinRT Component |
20+
| .NET Core Library | |
21+
| UWP C# Library | |
2122

2223
## Scenarios we want to support
2324

24-
Imagine you add this library to a .NET Standard class library, and you also add it to your UWP app. In this case, your .NET Standard class library will receive the NETStandard dll. Your UWP project will receive the UWP dll.
25+
Imagine you add this library to a .NET Standard class library, and you also add it to your UWP app. In this case, your .NET Standard class library will receive the .NET Standard DLL. Your UWP project will receive the UWP DLL.
2526

2627
## How are the test projects organized?
2728

28-
If you look in the UnitTests folder of the repo, you'll notice that there's three projects...
29-
- UnitTests.Notifications.Shared
30-
- UnitTests.Notifications.NetCore
31-
- UnitTests.Notifications.UWP
32-
- UnitTests.Notifications.WinRT
29+
If you look in the `UnitTests` folder of the repo, you'll notice that there are three projects...
30+
31+
- `UnitTests.Notifications.Shared`
32+
- `UnitTests.Notifications.NetCore`
33+
- `UnitTests.Notifications.UWP`
34+
- `UnitTests.Notifications.WinRT`
3335

34-
That's because in our source code, we have some #IF defs for switching between the different types of reflection that C# uses, since it's different between a .NET Standard and WinRT code.
36+
That's because in our source code, we have some `#ifdef` for switching between the different types of reflection that C# uses, since it's different between a .NET Standard and WinRT code.
3537

36-
Therefore, there are two different code paths, one path for NETFX_CORE, and another for when that isn't present. The two test projects exercise both code paths.
38+
Therefore, there are two different code paths, one path for `NETFX_CORE`, and another for when that isn't present. The two test projects exercise both code paths.

Microsoft.Toolkit.Uwp.SampleApp/Microsoft.Toolkit.Uwp.SampleApp.csproj

+2-3
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
</PackageReference>
108108
<!-- TODO Reintroduce graph controls
109109
<PackageReference Include="Microsoft.Toolkit.Graph.Controls">
110-
<Version>6.1.0-build.6</Version>
110+
<Version>7.0.0-preview2</Version>
111111
</PackageReference>
112112
-->
113113
<PackageReference Include="Microsoft.UI.Xaml">
@@ -124,7 +124,6 @@
124124
</PackageReference>
125125
</ItemGroup>
126126
<ItemGroup>
127-
<!-- A reference to the entire .Net Framework and Windows SDK are automatically included -->
128127
<Content Include="Assets\BrushAssets\TileTexture.png" />
129128
<Content Include="Assets\BrushAssets\NoiseTexture.png" />
130129
<Content Include="Assets\checker.png" />
@@ -1494,14 +1493,14 @@
14941493
</ProjectReference>
14951494
</ItemGroup>
14961495
<ItemGroup>
1496+
<!-- A reference to the entire .Net Framework and Windows SDK are automatically included -->
14971497
<SDKReference Include="Microsoft.Services.Store.Engagement, Version=10.0">
14981498
<Name>Microsoft Engagement Framework</Name>
14991499
</SDKReference>
15001500
<SDKReference Include="Microsoft.VCLibs, Version=14.0">
15011501
<Name>Visual C++ 2015 Runtime for Universal Windows Platform Apps</Name>
15021502
</SDKReference>
15031503
</ItemGroup>
1504-
<ItemGroup />
15051504
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' &lt; '14.0' ">
15061505
<VisualStudioVersion>14.0</VisualStudioVersion>
15071506
</PropertyGroup>

0 commit comments

Comments
 (0)