File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88using Microsoft . CodeAnalysis . CSharp ;
99using Microsoft . CodeAnalysis . Text ;
1010using Microsoft . VisualStudio . TestTools . UnitTesting ;
11+ using System . Collections . Immutable ;
1112using System . ComponentModel . DataAnnotations ;
1213
1314namespace CommunityToolkit . Tooling . SampleGen . Tests ;
Original file line number Diff line number Diff line change 77using CommunityToolkit . Tooling . SampleGen . Metadata ;
88using Microsoft . CodeAnalysis ;
99using Microsoft . CodeAnalysis . Text ;
10+ using System . Collections . Immutable ;
1011
1112namespace CommunityToolkit . Tooling . SampleGen ;
1213
Original file line number Diff line number Diff line change 77using Microsoft . CodeAnalysis ;
88using Microsoft . CodeAnalysis . CSharp ;
99using Microsoft . VisualStudio . TestTools . UnitTesting ;
10+ using System . Collections . Immutable ;
1011
1112namespace CommunityToolkit . Tooling . TestGen . Tests ;
1213
Original file line number Diff line number Diff line change 77
88global using System ;
99global using System . Collections . Generic ;
10- global using System . Collections . Immutable ;
1110global using System . Collections . ObjectModel ;
1211global using System . ComponentModel ;
1312global using System . Diagnostics ;
Original file line number Diff line number Diff line change 1818 <Import Project =" $(ToolingDirectory)\MultiTarget\DefinedConstants.props" />
1919
2020 <!-- Add platform package dependencies -->
21- <Import Project =" $(ToolingDirectory)\MultiTarget\PackageReferences\Netstandard.props" Condition =" $(IsNetstandard) == 'true'" />
2221 <Import Project =" $(ToolingDirectory)\MultiTarget\PackageReferences\Uno.props" Condition =" $(IsUno) == 'true'" />
2322 <Import Project =" $(ToolingDirectory)\MultiTarget\PackageReferences\Uwp.props" Condition =" $(IsUwp) == 'true'" />
2423 <Import Project =" $(ToolingDirectory)\MultiTarget\PackageReferences\WinAppSdk.props" Condition =" $(IsWinAppSdk) == 'true'" />
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11<Project >
22 <ItemGroup >
33 <PackageReference Condition =" '$(HasWinUI)' == 'true'" Include =" Microsoft.UI.Xaml" Version =" 2.7.0" />
4- <PackageReference Include =" System.Collections.Immutable" Version =" 5.0.0" />
54 </ItemGroup >
65</Project >
Original file line number Diff line number Diff line change 22 <Target Name =" CheckComponentName" >
33 <Error Condition =" $(ToolkitComponentName) == ''" Message =" ToolkitComponentName is not defined. Please check your csproj." />
44 </Target >
5-
5+
66 <!-- Set up the MultiTarget system -->
77 <Import Project =" $(ToolingDirectory)\MultiTarget\Library.props" />
88
99 <!-- Import this component's source project -->
1010 <ItemGroup >
1111 <ProjectReference Include =" $(MSBuildProjectDirectory)\..\src\*.csproj" />
12+ <PackageReference Include =" System.Collections.Immutable" Version =" 5.0.0" />
1213 </ItemGroup >
1314
1415 <ItemGroup >
2526 <!-- Manually include XAML files, except under UWP in Release mode. The files already exist in the final app package (with some modifications) -->
2627 <Content Condition =" !('$(IsUwp)' == 'true' AND '$(Configuration)' == 'Release')" Include =" **\*.xaml" Exclude =" bin\**\*.xaml;obj\**\*.xaml" />
2728
28- <!-- Manually include .cs and .md files -->
29+ <!-- Manually include .cs and .md files -->
2930 <Content Include =" **\*.cs" Exclude =" bin\**\*.cs;obj\**\*.cs" />
3031 <Content Include =" **\*.md" Exclude =" bin\**\*.md;obj\**\*.md" />
3132 </ItemGroup >
You can’t perform that action at this time.
0 commit comments