File tree Expand file tree Collapse file tree 8 files changed +6
-10
lines changed Expand file tree Collapse file tree 8 files changed +6
-10
lines changed Original file line number Diff line number Diff line change 8
8
using Microsoft . CodeAnalysis . CSharp ;
9
9
using Microsoft . CodeAnalysis . Text ;
10
10
using Microsoft . VisualStudio . TestTools . UnitTesting ;
11
+ using System . Collections . Immutable ;
11
12
using System . ComponentModel . DataAnnotations ;
12
13
13
14
namespace CommunityToolkit . Tooling . SampleGen . Tests ;
Original file line number Diff line number Diff line change 7
7
using CommunityToolkit . Tooling . SampleGen . Metadata ;
8
8
using Microsoft . CodeAnalysis ;
9
9
using Microsoft . CodeAnalysis . Text ;
10
+ using System . Collections . Immutable ;
10
11
11
12
namespace CommunityToolkit . Tooling . SampleGen ;
12
13
Original file line number Diff line number Diff line change 7
7
using Microsoft . CodeAnalysis ;
8
8
using Microsoft . CodeAnalysis . CSharp ;
9
9
using Microsoft . VisualStudio . TestTools . UnitTesting ;
10
+ using System . Collections . Immutable ;
10
11
11
12
namespace CommunityToolkit . Tooling . TestGen . Tests ;
12
13
Original file line number Diff line number Diff line change 7
7
8
8
global using System ;
9
9
global using System . Collections . Generic ;
10
- global using System . Collections . Immutable ;
11
10
global using System . Collections . ObjectModel ;
12
11
global using System . ComponentModel ;
13
12
global using System . Diagnostics ;
Original file line number Diff line number Diff line change 18
18
<Import Project =" $(ToolingDirectory)\MultiTarget\DefinedConstants.props" />
19
19
20
20
<!-- Add platform package dependencies -->
21
- <Import Project =" $(ToolingDirectory)\MultiTarget\PackageReferences\Netstandard.props" Condition =" $(IsNetstandard) == 'true'" />
22
21
<Import Project =" $(ToolingDirectory)\MultiTarget\PackageReferences\Uno.props" Condition =" $(IsUno) == 'true'" />
23
22
<Import Project =" $(ToolingDirectory)\MultiTarget\PackageReferences\Uwp.props" Condition =" $(IsUwp) == 'true'" />
24
23
<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 1
1
<Project >
2
2
<ItemGroup >
3
3
<PackageReference Condition =" '$(HasWinUI)' == 'true'" Include =" Microsoft.UI.Xaml" Version =" 2.7.0" />
4
- <PackageReference Include =" System.Collections.Immutable" Version =" 5.0.0" />
5
4
</ItemGroup >
6
5
</Project >
Original file line number Diff line number Diff line change 2
2
<Target Name =" CheckComponentName" >
3
3
<Error Condition =" $(ToolkitComponentName) == ''" Message =" ToolkitComponentName is not defined. Please check your csproj." />
4
4
</Target >
5
-
5
+
6
6
<!-- Set up the MultiTarget system -->
7
7
<Import Project =" $(ToolingDirectory)\MultiTarget\Library.props" />
8
8
9
9
<!-- Import this component's source project -->
10
10
<ItemGroup >
11
11
<ProjectReference Include =" $(MSBuildProjectDirectory)\..\src\*.csproj" />
12
+ <PackageReference Include =" System.Collections.Immutable" Version =" 5.0.0" />
12
13
</ItemGroup >
13
14
14
15
<ItemGroup >
25
26
<!-- Manually include XAML files, except under UWP in Release mode. The files already exist in the final app package (with some modifications) -->
26
27
<Content Condition =" !('$(IsUwp)' == 'true' AND '$(Configuration)' == 'Release')" Include =" **\*.xaml" Exclude =" bin\**\*.xaml;obj\**\*.xaml" />
27
28
28
- <!-- Manually include .cs and .md files -->
29
+ <!-- Manually include .cs and .md files -->
29
30
<Content Include =" **\*.cs" Exclude =" bin\**\*.cs;obj\**\*.cs" />
30
31
<Content Include =" **\*.md" Exclude =" bin\**\*.md;obj\**\*.md" />
31
32
</ItemGroup >
You can’t perform that action at this time.
0 commit comments