Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit e8ff209

Browse files
committed
Consolidate custom build targets into separate files
VS loves to screw around with the csproj format, so move all the custom rules into separate files that it can't screw around with. This also gives the added benefit of shutting up the warning about duplicate AssemblyVersionInformation types, because apparently VS doesn't show files that are included for compilation from external targets files but it still includes them in the compilation (bug? feature? shrug) Add instructions for the GitHub.Unity.OctokitDebugging solution Add mono-built versions of octokit and dotnet-http. Octokit: 0.23.0.1 dotnet-httpClient35: 3.5.0.0 (3.5.22000.1-gfu)
1 parent 91d7618 commit e8ff209

30 files changed

+182
-338
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ _NCrunch_GitHub.Unity
44
*.user
55
.DS_Store
66
build/
7-
TestResult.xml
7+
TestResult.xml
8+
submodules/

GitHub.Unity.Internal.sln GitHub.Unity.OctokitDebugging.sln

-9
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "octokit", "octokit", "{5C9C
3333
EndProject
3434
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Octokit-35", "..\octokit.net\Octokit\Octokit-35.csproj", "{49EF16A2-5ED1-480F-80A1-D1D05D6C1BE4}"
3535
EndProject
36-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Octokit-Extensions35", "..\octokit.net\Octokit-Extensions35\Octokit-Extensions35.csproj", "{EB4B074E-62A7-4F1D-8F95-E64B7AEA0236}"
37-
EndProject
3836
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "System.Net.Http-net_3_5", "..\dotnet-httpclient35\System.Net.Http\System.Net.Http-net_3_5.csproj", "{9862694D-E4FA-418B-8692-A0280FEDDF36}"
3937
EndProject
4038
Global
@@ -110,12 +108,6 @@ Global
110108
{49EF16A2-5ED1-480F-80A1-D1D05D6C1BE4}.dev|Any CPU.Build.0 = Debug|Any CPU
111109
{49EF16A2-5ED1-480F-80A1-D1D05D6C1BE4}.Release|Any CPU.ActiveCfg = Release|Any CPU
112110
{49EF16A2-5ED1-480F-80A1-D1D05D6C1BE4}.Release|Any CPU.Build.0 = Release|Any CPU
113-
{EB4B074E-62A7-4F1D-8F95-E64B7AEA0236}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
114-
{EB4B074E-62A7-4F1D-8F95-E64B7AEA0236}.Debug|Any CPU.Build.0 = Debug|Any CPU
115-
{EB4B074E-62A7-4F1D-8F95-E64B7AEA0236}.dev|Any CPU.ActiveCfg = Debug|Any CPU
116-
{EB4B074E-62A7-4F1D-8F95-E64B7AEA0236}.dev|Any CPU.Build.0 = Debug|Any CPU
117-
{EB4B074E-62A7-4F1D-8F95-E64B7AEA0236}.Release|Any CPU.ActiveCfg = Release|Any CPU
118-
{EB4B074E-62A7-4F1D-8F95-E64B7AEA0236}.Release|Any CPU.Build.0 = Release|Any CPU
119111
{9862694D-E4FA-418B-8692-A0280FEDDF36}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
120112
{9862694D-E4FA-418B-8692-A0280FEDDF36}.Debug|Any CPU.Build.0 = Debug|Any CPU
121113
{9862694D-E4FA-418B-8692-A0280FEDDF36}.dev|Any CPU.ActiveCfg = Debug|Any CPU
@@ -135,7 +127,6 @@ Global
135127
{1A382F40-FD9E-43E1-89C1-320073F35CE9} = {D17F1B4C-42DC-4E78-BCEF-9F239A084C4D}
136128
{08B87D2A-8CF1-4211-B7AA-5209F00F72F8} = {D17F1B4C-42DC-4E78-BCEF-9F239A084C4D}
137129
{49EF16A2-5ED1-480F-80A1-D1D05D6C1BE4} = {5C9C1D3B-0740-4EF3-A374-CCCD67FB6E48}
138-
{EB4B074E-62A7-4F1D-8F95-E64B7AEA0236} = {5C9C1D3B-0740-4EF3-A374-CCCD67FB6E48}
139130
{9862694D-E4FA-418B-8692-A0280FEDDF36} = {C6854BB9-D594-46B0-9E10-72607CC97E77}
140131
EndGlobalSection
141132
EndGlobal

GitHub.Unity.v3.ncrunchsolution

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<AllowParallelTestExecution>True</AllowParallelTestExecution>
44
<MetricsExclusionList>
55
<Value>submodules\octokit.net\Octokit\Octokit-35.csproj</Value>
6-
<Value>submodules\octokit.net\Octokit-Extensions35\Octokit-Extensions35.csproj</Value>
76
<Value>src\UnitTests\UnitTests.csproj</Value>
87
<Value>src\IntegrationTests\IntegrationTests.csproj</Value>
98
<Value>submodules\dotnet-httpClient35\System.Net.Http\System.Net.Http-net_3_5.csproj</Value>

build.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ if [ -e "/c/" ]; then
2727
fi
2828

2929
if [ x"$OS" == x"Windows" ]; then
30-
common/nuget restore
30+
common/nuget restore GitHub.Unity.sln
3131
else
32-
nuget restore
32+
nuget restore GitHub.Unity.sln
3333
fi
3434

3535
xbuild GitHub.Unity.sln /verbosity:normal /property:Configuration=$Configuration /target:$Target || true

common/build.targets

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<!-- Build flags -->
4+
<PropertyGroup>
5+
<SolutionType Condition="'$(SolutionName)' == 'GitHub.Unity.OctokitDebugging'">OctokitDebugging</SolutionType>
6+
<BuildType Condition="Exists('$(SolutionDir)\script\src\MetricsService.cs')">Internal</BuildType>
7+
8+
<UnityDir Condition="$(UnityDir) == '' and Exists('$(SolutionDir)\script\lib\UnityEditor.dll')">$(SolutionDir)\script\lib\</UnityDir>
9+
<UnityDir Condition="$(UnityDir) == '' and Exists('$(SolutionDir)\lib\UnityEditor.dll')">$(SolutionDir)\lib\</UnityDir>
10+
<UnityDir Condition="$(UnityDir) == '' and Exists('C:\Program Files (x86)\Unity\Editor\Data\Managed\UnityEditor.dll')">C:\Program Files (x86)\Unity\Editor\Data\Managed\</UnityDir>
11+
<UnityDir Condition="$(UnityDir) == '' and Exists('\Applications\Unity\Unity.app\Contents\Managed\UnityEditor.dll')">\Applications\Unity\Unity.app\Contents\Managed\</UnityDir>
12+
<BuildConfig Condition=" '$(BuildConfig)' == '' ">Debug</BuildConfig>
13+
</PropertyGroup>
14+
15+
<!-- Common assembly properties (versioning) -->
16+
<ItemGroup>
17+
<Compile Include="$(SolutionDir)common\SolutionInfo.cs">
18+
<Link>Properties\SolutionInfo.cs</Link>
19+
</Compile>
20+
<None Include="$(SolutionDir)common\GitHub.ruleset">
21+
<Link>Properties\GitHub.ruleset</Link>
22+
</None>
23+
</ItemGroup>
24+
25+
<!-- Common includes and references -->
26+
<Choose>
27+
<When Condition="$(SolutionType) == 'OctokitDebugging'">
28+
<ItemGroup>
29+
<ProjectReference Include="$(SolutionDir)..\dotnet-httpclient35\System.Net.Http\System.Net.Http-net_3_5.csproj">
30+
<Project>{9862694d-e4fa-418b-8692-a0280feddf36}</Project>
31+
<Name>System.Net.Http-net_3_5</Name>
32+
</ProjectReference>
33+
<ProjectReference Include="$(SolutionDir)..\octokit.net\Octokit\Octokit-35.csproj">
34+
<Project>{49ef16a2-5ed1-480f-80a1-d1d05d6c1be4}</Project>
35+
<Name>Octokit-35</Name>
36+
</ProjectReference>
37+
</ItemGroup>
38+
</When>
39+
<Otherwise>
40+
<ItemGroup>
41+
<Reference Include="Octokit">
42+
<HintPath>$(SolutionDir)lib\octokit.net\Octokit.dll</HintPath>
43+
</Reference>
44+
<Reference Include="System.Net.Http">
45+
<HintPath>$(SolutionDir)lib\system.net.http_35\System.Net.Http.dll</HintPath>
46+
</Reference>
47+
</ItemGroup>
48+
</Otherwise>
49+
</Choose>
50+
51+
<Target Name="BeforeBuild">
52+
<PropertyGroup>
53+
<ErrorText>Location of Unity dlls is not set. You'll need to install Unity in a known location (the default installation directory for your system), or copy UnityEngine.dll and UnityEditor.dll to the {0}lib folder</ErrorText>
54+
</PropertyGroup>
55+
<Error Condition="'$(UnityDir)' == ''" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)'))" />
56+
</Target>
57+
</Project>

common/packaging.targets

+72
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
4+
<PropertyGroup>
5+
<PublishTo Condition="'$(PublishTo)' == '' ">$(SolutionDir)\unity\PackageProject\Assets\Editor\GitHub</PublishTo>
6+
<ExternalPublishTo>$(SolutionDir)..\github-unity-test\GitHubExtensionProject\Assets\Editor\GitHub</ExternalPublishTo>
7+
</PropertyGroup>
8+
9+
<!-- After the build is done, we copy all the artifacts into two locations:
10+
..\github-unity-test\GitHubExtensionProject - an empty unity project for testing
11+
unity\PackageProject - the project we use for packaging
12+
-->
13+
<Target Name="AfterBuild">
14+
15+
<Delete Files="$(OutputPath)\$(AssemblyName).dll;$(OutputPath)\$(AssemblyName).pdb;$(OutputPath)\$(AssemblyName).dll.mdb" TreatErrorsAsWarnings="true" />
16+
17+
<CreateItem Include="$(OutputPath)\**\*.*">
18+
<Output TaskParameter="Include" ItemName="ToCopy" />
19+
</CreateItem>
20+
21+
<!-- Copy all the DLLs to the unity\PackageProject folder for later packaging -->
22+
<Copy
23+
SourceFiles="@(ToCopy)"
24+
DestinationFiles="@(ToCopy->'$(PublishTo)\%(RecursiveDir)%(Filename)%(Extension)')"
25+
Condition="!$([System.String]::Copy('%(Filename)').Contains('deleteme')) and !$([System.String]::Copy('%(Extension)').Contains('xml')) and !$([System.String]::Copy('%(Extension)').Contains('pdb')) and !$([System.String]::Copy('%(Extension)').Contains('dll.mdb'))" />
26+
27+
<CreateItem Include="$(PublishTo)\**\*.*">
28+
<Output TaskParameter="Include" ItemName="ToMoreCopy" />
29+
</CreateItem>
30+
31+
<!-- Copy all the DLLs to the ..\github-unity-test folder, creating an empty Unity project with the extension ready for testing -->
32+
<Copy
33+
SourceFiles="@(ToMoreCopy)"
34+
DestinationFiles="@(ToMoreCopy->'$(ExternalPublishTo)\%(RecursiveDir)%(Filename)%(Extension)')"
35+
Retries="0"
36+
ContinueOnError="WarnAndContinue" />
37+
38+
</Target>
39+
40+
<Target Name="CopyMainAssembly" DependsOnTargets="DetectMainAssembly">
41+
42+
<Copy
43+
Condition="'%(IndirectDependency.FullPath)'!=''"
44+
SourceFiles="%(IndirectDependency.FullPath)"
45+
DestinationFolder="$(OutputPath)"
46+
SkipUnchangedFiles="true">
47+
<Output TaskParameter="CopiedFiles" ItemName="IndirectDependencyCopied" />
48+
</Copy>
49+
50+
<Message Importance="high"
51+
Condition="'%(IndirectDependencyCopied.FullPath)'!='' and '%(IndirectDependencyCopied.Extension)'!='.pdb' and '%(IndirectDependencyCopied.Extension)'!='.xml'"
52+
Text="Dependency copied: %(IndirectDependencyCopied.FullPath)" />
53+
54+
</Target>
55+
56+
<Target Name="DetectMainAssembly" DependsOnTargets="ResolveAssemblyReferences">
57+
58+
<Message Importance="low" Text="Dependency: %(ReferencePath.Filename)%(ReferencePath.Extension) %(ReferencePath.CopyLocal)" />
59+
60+
<!-- Creating indirect dependency list -->
61+
<CreateItem Include="%(ReferencePath.FullPath)" Condition="$([System.String]::Copy('%(ReferencePath.Filename)').Contains('GitHub.Unity'))">
62+
<Output TaskParameter="Include" ItemName="IndirectDependency" />
63+
</CreateItem>
64+
</Target>
65+
66+
<PropertyGroup>
67+
<CoreBuildDependsOn>
68+
$(CoreBuildDependsOn);
69+
CopyMainAssembly
70+
</CoreBuildDependsOn>
71+
</PropertyGroup>
72+
</Project>

common/unitylocation.props

-15
This file was deleted.

docs/contributing/how-to-build.md

+6
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,9 @@ The `GitHub.Unity.sln` solution includes several projects:
6161
- GitHub.Logging: A logging helper library
6262
- GitHub.Api: The core of the extension. This project is C#6 and includes async/await threading and other features that Unity cannot currently compile.
6363
- GitHub.Unity: Unity-specific code. This project is compilable by Unity
64+
65+
## Other solutions
66+
67+
Octokit is normally included as a prebuilt DLL (in the `lib` directory), but when updating Octokit or debugging issues with the 3.5 backport, it can sometimes be handy to reference the project directly. The `GitHub.Unity.OctokitDebugging.sln` solution is a helper solution that includes Octokit and dotnet-httpclient35 as referenced projects instead of prebuilt dlls.
68+
69+
This solution requires a clone of [https://github.com/github-for-unity/octokit.net](https://github.com/github-for-unity/octokit.net) and [https://github.com/github-for-unity/dotnet-httpclient35](https://github.com/github-for-unity/dotnet-httpclient35) to exist next to your GitHub for Unity checkout.

lib/octokit.net/Octokit-Extensions35.dll

-3
This file was deleted.

lib/octokit.net/Octokit-Extensions35.pdb

-3
This file was deleted.

lib/octokit.net/Octokit.dll

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:42bcae1226a85845d182552c2f7fbe4291eb1bce7ce592e55197a0a0b7f452b9
3-
size 797696
2+
oid sha256:b8505b576308d2e03e825f94c9e9877c2f264e0ed4ecd8660e11cdcc91833e7b
3+
size 741888

lib/octokit.net/Octokit.dll.mdb

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:284a267af8d47b2025e235fab86efbf9d96a4e985885283a5a3a65f27ca32aba
3+
size 283050

lib/octokit.net/Octokit.pdb

-3
This file was deleted.

lib/octokit.net/version.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0.23.0.1 0.23.0.1-gfu ec0882345e0a2ee4743b84e8471dfa6fa7219ca3
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:d260a11ea58869d49027034bc4f90edefd9d2b3b9109eb3d7ac0cf6f50e73c0e
3-
size 132608
2+
oid sha256:a5c3872e7f813ca2f89901ee01ec8d4a9befd2ed340e022593ab1de4161e1795
3+
size 123904
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:4cc3613dff867883414eb77b80f7580b9b6d80d58d5ec843f4f066c02e56bb79
3+
size 46994

lib/system.net.http_35/System.Net.Http.pdb

-3
This file was deleted.

lib/system.net.http_35/version.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.5.0.0 3.5.22000.1-gfu 23c6b1899fd48d2ff16f947fb0a8ce847d10464d

package.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ if [ -e "/c/" ]; then
3737
fi
3838

3939
if [ x"$OS" == x"Windows" ]; then
40-
common/nuget restore
40+
common/nuget restore GitHub.Unity.sln
4141
else
42-
nuget restore
42+
nuget restore GitHub.Unity.sln
4343
fi
4444
xbuild GitHub.Unity.sln /property:Configuration=$Configuration
4545

src/GitHub.Api/Authentication/LoginManager.cs

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
using System.Net;
33
using System.Threading.Tasks;
44
using Octokit;
5-
using GitHub.Unity;
6-
using Octokit_Extensions35;
75

86
namespace GitHub.Unity
97
{

src/GitHub.Api/GitHub.Api.csproj

+14-47
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<Import Project="..\..\common\build.targets" />
45
<PropertyGroup>
56
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
67
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -11,8 +12,6 @@
1112
<AssemblyName>GitHub.Api</AssemblyName>
1213
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
1314
<FileAlignment>512</FileAlignment>
14-
<SolutionType Condition="$(SolutionName)=='GitHub.Unity.Internal'">Internal</SolutionType>
15-
<BuildType Condition="Exists('$(SolutionDir)\script\src\MetricsService.cs')">Internal</BuildType>
1615
<OutputPath>bin\$(Configuration)\</OutputPath>
1716
<TargetFrameworkProfile />
1817
<LangVersion>6</LangVersion>
@@ -203,8 +202,6 @@
203202
<Compile Include="Threading\IAwaitable.cs" />
204203
<Compile Include="Threading\IAwaiter.cs" />
205204
<Compile Include="Threading\ThreadingHelper.cs" />
206-
</ItemGroup>
207-
<ItemGroup>
208205
<Compile Include="Application\IApiClient.cs" />
209206
<Compile Include="Application\ApiClient.cs" />
210207
<Compile Include="Authentication\AuthenticationResult.cs" />
@@ -223,55 +220,25 @@
223220
<Compile Include="Platform\Platform.cs" />
224221
<Compile Include="Git\GitCredentialManager.cs" />
225222
</ItemGroup>
226-
<ItemGroup>
227-
<Compile Include="$(SolutionDir)common\SolutionInfo.cs">
228-
<Link>Properties\SolutionInfo.cs</Link>
229-
</Compile>
230-
</ItemGroup>
231-
<ItemGroup Condition="$(Buildtype) != 'Internal'">
232-
<None Include="$(SolutionDir)\common\ApplicationInfo_Local.cs-example" Condition="!Exists('$(SolutionDir)\common\ApplicationInfo_Local.cs')">
233-
<Link>Properties\ApplicationInfo_Local.cs-example</Link>
234-
</None>
235-
<Compile Include="$(SolutionDir)\common\ApplicationInfo_Local.cs" Condition="Exists('$(SolutionDir)\common\ApplicationInfo_Local.cs')">
236-
<Link>Properties\ApplicationInfo_Local.cs</Link>
237-
</Compile>
238-
</ItemGroup>
239-
<ItemGroup Condition="$(Buildtype) == 'Internal'">
240-
<Compile Include="$(SolutionDir)\script\src\MetricsService.cs">
241-
<Link>Metrics\MetricsService.cs</Link>
242-
</Compile>
243-
<Compile Include="$(SolutionDir)\script\src\ApplicationInfo_Local.cs">
244-
<Link>Properties\ApplicationInfo_Local.cs</Link>
245-
</Compile>
246-
</ItemGroup>
247223
<Choose>
248-
<When Condition="$(SolutionType) == 'Internal'">
224+
<When Condition="$(Buildtype) == 'Internal'">
249225
<ItemGroup>
250-
<ProjectReference Include="$(SolutionDir)..\dotnet-httpclient35\System.Net.Http\System.Net.Http-net_3_5.csproj">
251-
<Project>{9862694d-e4fa-418b-8692-a0280feddf36}</Project>
252-
<Name>System.Net.Http-net_3_5</Name>
253-
</ProjectReference>
254-
<ProjectReference Include="$(SolutionDir)..\octokit.net\Octokit-Extensions35\Octokit-Extensions35.csproj">
255-
<Project>{eb4b074e-62a7-4f1d-8f95-e64b7aea0236}</Project>
256-
<Name>Octokit-Extensions35</Name>
257-
</ProjectReference>
258-
<ProjectReference Include="$(SolutionDir)..\octokit.net\Octokit\Octokit-35.csproj">
259-
<Project>{49ef16a2-5ed1-480f-80a1-d1d05d6c1be4}</Project>
260-
<Name>Octokit-35</Name>
261-
</ProjectReference>
226+
<Compile Include="$(SolutionDir)\script\src\MetricsService.cs">
227+
<Link>Metrics\MetricsService.cs</Link>
228+
</Compile>
229+
<Compile Include="$(SolutionDir)\script\src\ApplicationInfo_Local.cs">
230+
<Link>Properties\ApplicationInfo_Local.cs</Link>
231+
</Compile>
262232
</ItemGroup>
263233
</When>
264234
<Otherwise>
265235
<ItemGroup>
266-
<Reference Include="Octokit">
267-
<HintPath>$(SolutionDir)lib\octokit.net\Octokit.dll</HintPath>
268-
</Reference>
269-
<Reference Include="Octokit-Extensions35">
270-
<HintPath>$(SolutionDir)lib\octokit.net\Octokit-Extensions35.dll</HintPath>
271-
</Reference>
272-
<Reference Include="System.Net.Http">
273-
<HintPath>$(SolutionDir)lib\system.net.http_35\System.Net.Http.dll</HintPath>
274-
</Reference>
236+
<None Include="$(SolutionDir)\common\ApplicationInfo_Local.cs-example" Condition="!Exists('$(SolutionDir)\common\ApplicationInfo_Local.cs')">
237+
<Link>Properties\ApplicationInfo_Local.cs-example</Link>
238+
</None>
239+
<Compile Include="$(SolutionDir)\common\ApplicationInfo_Local.cs" Condition="Exists('$(SolutionDir)\common\ApplicationInfo_Local.cs')">
240+
<Link>Properties\ApplicationInfo_Local.cs</Link>
241+
</Compile>
275242
</ItemGroup>
276243
</Otherwise>
277244
</Choose>

0 commit comments

Comments
 (0)