-
Notifications
You must be signed in to change notification settings - Fork 132
Add support for Gitee #922
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 3 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,57 @@ | ||
| // Licensed to the .NET Foundation under one or more agreements. | ||
| // The .NET Foundation licenses this file to you under the MIT license. | ||
| // See the License.txt file in the project root for more information. | ||
| using Microsoft.Build.Tasks.SourceControl; | ||
| using TestUtilities; | ||
| using Xunit; | ||
| using static TestUtilities.KeyValuePairUtils; | ||
|
|
||
| namespace Microsoft.SourceLink.Gitee.UnitTests | ||
| { | ||
| public class GetSourceLinkUrlTests | ||
| { | ||
| [Fact] | ||
| public void EmptyHosts() | ||
| { | ||
| var engine = new MockEngine(); | ||
|
|
||
| var task = new GetSourceLinkUrl() | ||
| { | ||
| BuildEngine = engine, | ||
| SourceRoot = new MockItem("x", KVP("RepositoryUrl", "http://abc.com"), KVP("SourceControl", "git")), | ||
| }; | ||
|
|
||
| bool result = task.Execute(); | ||
|
|
||
| AssertEx.AssertEqualToleratingWhitespaceDifferences( | ||
| "ERROR : " + string.Format(CommonResources.AtLeastOneRepositoryHostIsRequired, "SourceLinkGiteeHost", "Gitee"), engine.Log); | ||
|
|
||
| Assert.False(result); | ||
| } | ||
|
|
||
| [Theory] | ||
| [InlineData("", "")] | ||
| [InlineData("", "/")] | ||
| [InlineData("/", "")] | ||
| [InlineData("/", "/")] | ||
| public void BuildSourceLinkUrl(string s1, string s2) | ||
| { | ||
| var engine = new MockEngine(); | ||
|
|
||
| var task = new GetSourceLinkUrl() | ||
| { | ||
| BuildEngine = engine, | ||
| SourceRoot = new MockItem("/src/", KVP("RepositoryUrl", "http://subdomain.mygitee.com:100/a/b" + s1), KVP("SourceControl", "git"), KVP("RevisionId", "0123456789abcdefABCDEF000000000000000000")), | ||
| Hosts = new[] | ||
| { | ||
| new MockItem("mygitee.com", KVP("ContentUrl", "https://domain.com/x/y" + s2)), | ||
| } | ||
| }; | ||
|
|
||
| bool result = task.Execute(); | ||
| AssertEx.AssertEqualToleratingWhitespaceDifferences("", engine.Log); | ||
| AssertEx.AreEqual("https://domain.com/x/y/a/b/raw/0123456789abcdefABCDEF000000000000000000/*", task.SourceLinkUrl); | ||
| Assert.True(result); | ||
| } | ||
| } | ||
| } |
11 changes: 11 additions & 0 deletions
11
src/SourceLink.Gitee.UnitTests/Microsoft.SourceLink.Gitee.UnitTests.csproj
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the License.txt file in the project root for more information. --> | ||
| <Project Sdk="Microsoft.NET.Sdk"> | ||
| <PropertyGroup> | ||
| <TargetFrameworks>net472;net7.0</TargetFrameworks> | ||
| </PropertyGroup> | ||
| <ItemGroup> | ||
| <ProjectReference Include="..\SourceLink.Gitee\Microsoft.SourceLink.Gitee.csproj" /> | ||
| <ProjectReference Include="..\TestUtilities\TestUtilities.csproj" /> | ||
| </ItemGroup> | ||
| </Project> |
52 changes: 52 additions & 0 deletions
52
src/SourceLink.Gitee.UnitTests/TranslateRepositoryUrlsTests.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,52 @@ | ||
| // Licensed to the .NET Foundation under one or more agreements. | ||
| // The .NET Foundation licenses this file to you under the MIT license. | ||
| // See the License.txt file in the project root for more information. | ||
| using System.Linq; | ||
| using TestUtilities; | ||
| using Xunit; | ||
| using static TestUtilities.KeyValuePairUtils; | ||
|
|
||
| namespace Microsoft.SourceLink.Gitee.UnitTests | ||
| { | ||
| public class TranslateRepositoryUrlsTests | ||
| { | ||
| [Fact] | ||
| public void Translate() | ||
| { | ||
| var engine = new MockEngine(); | ||
|
|
||
| var task = new TranslateRepositoryUrls() | ||
| { | ||
| BuildEngine = engine, | ||
| RepositoryUrl = "ssh://gitee.com/a/b", | ||
| IsSingleProvider = true, | ||
| SourceRoots = new[] | ||
| { | ||
| new MockItem("/1/", KVP("SourceControl", "git"), KVP("ScmRepositoryUrl", "ssh://gitee.com:22/a/b")), | ||
| new MockItem("/2/", KVP("SourceControl", "tfvc"), KVP("ScmRepositoryUrl", "ssh://gitee1.com/a/b")), | ||
| new MockItem("/2/", KVP("SourceControl", "git"), KVP("ScmRepositoryUrl", "ssh://gitee1.com/a/b")), | ||
| new MockItem("/2/", KVP("SourceControl", "tfvc"), KVP("ScmRepositoryUrl", "ssh://gitee2.com/a/b")), | ||
| }, | ||
| Hosts = new[] | ||
| { | ||
| new MockItem("gitee1.com") | ||
| } | ||
| }; | ||
|
|
||
| bool result = task.Execute(); | ||
| AssertEx.AssertEqualToleratingWhitespaceDifferences("", engine.Log); | ||
|
|
||
| AssertEx.AreEqual("https://gitee.com/a/b", task.TranslatedRepositoryUrl); | ||
|
|
||
| AssertEx.Equal(new[] | ||
| { | ||
| "https://gitee.com/a/b", | ||
| "ssh://gitee1.com/a/b", | ||
| "https://gitee1.com/a/b", | ||
| "ssh://gitee2.com/a/b" | ||
| }, task.TranslatedSourceRoots?.Select(r => r.GetMetadata("ScmRepositoryUrl"))); | ||
|
|
||
| Assert.True(result); | ||
| } | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| // Licensed to the .NET Foundation under one or more agreements. | ||
| // The .NET Foundation licenses this file to you under the MIT license. | ||
| // See the License.txt file in the project root for more information. | ||
|
|
||
| using System; | ||
| using Microsoft.Build.Framework; | ||
| using Microsoft.Build.Tasks.SourceControl; | ||
|
|
||
| namespace Microsoft.SourceLink.Gitee | ||
| { | ||
| /// <summary> | ||
| /// The task calculates SourceLink URL for a given SourceRoot. | ||
| /// If the SourceRoot is associated with a git repository with a recognized domain the <see cref="SourceLinkUrl"/> | ||
| /// output property is set to the content URL corresponding to the domain, otherwise it is set to string "N/A". | ||
| /// </summary> | ||
| public sealed class GetSourceLinkUrl : GetSourceLinkUrlGitTask | ||
| { | ||
| protected override string HostsItemGroupName => "SourceLinkGiteeHost"; | ||
| protected override string ProviderDisplayName => "Gitee"; | ||
|
|
||
| protected override Uri GetDefaultContentUriFromHostUri(string authority, Uri gitUri) | ||
| => new Uri($"{gitUri.Scheme}://{authority}", UriKind.Absolute); | ||
|
|
||
| protected override string? BuildSourceLinkUrl(Uri contentUri, Uri gitUri, string relativeUrl, string revisionId, ITaskItem? hostItem) | ||
| => UriUtilities.Combine(UriUtilities.Combine(contentUri.ToString(), relativeUrl), "raw/"+ revisionId + "/*"); | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the License.txt file in the project root for more information. --> | ||
| <Project Sdk="Microsoft.NET.Sdk"> | ||
| <PropertyGroup> | ||
| <TargetFrameworks>net472;netcoreapp3.1;net7.0</TargetFrameworks> | ||
| <TargetFrameworks Condition=" '$(DotNetBuildFromSource)' == 'true' ">net7.0</TargetFrameworks> | ||
| <AutoGenerateAssemblyVersion>true</AutoGenerateAssemblyVersion> | ||
|
|
||
| <!-- Using an explicit nuspec file due to https://github.com/NuGet/Home/issues/6754 --> | ||
| <IsPackable>true</IsPackable> | ||
| <NuspecFile>$(MSBuildProjectName).nuspec</NuspecFile> | ||
| <NuspecBasePath>$(OutputPath)</NuspecBasePath> | ||
|
|
||
| <PackageDescription>Generates source link for Gitee repositories.</PackageDescription> | ||
| <PackageTags>MSBuild Tasks Gitee source link</PackageTags> | ||
| <DevelopmentDependency>true</DevelopmentDependency> | ||
| </PropertyGroup> | ||
| <ItemGroup> | ||
| <Compile Include="..\Common\NullableAttributes.cs" Link="Common\NullableAttributes.cs" /> | ||
| <Compile Include="..\Common\Names.cs" Link="Common\Names.cs" /> | ||
| <Compile Include="..\Common\GetSourceLinkUrlGitTask.cs" Link="Common\GetSourceLinkUrlGitTask.cs" /> | ||
| <Compile Include="..\Common\TranslateRepositoryUrlGitTask.cs" Link="Common\TranslateRepositoryUrlGitTask.cs" /> | ||
| <Compile Include="..\Common\UriUtilities.cs" Link="Common\UriUtilities.cs" /> | ||
| <EmbeddedResource Include="..\Common\CommonResources.resx" Link="Common\CommonResources.resx"> | ||
| <Namespace>Microsoft.Build.Tasks.SourceControl</Namespace> | ||
| <GenerateSource>true</GenerateSource> | ||
| </EmbeddedResource> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <PackageReference Include="Microsoft.Build" Version="$(MicrosoftBuildVersion)" /> | ||
| <PackageReference Include="Microsoft.Build.Tasks.Core" Version="$(MicrosoftBuildTasksCore)" /> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <InternalsVisibleTo Include="Microsoft.SourceLink.Gitee.UnitTests" /> | ||
| <InternalsVisibleTo Include="Microsoft.SourceLink.Git.IntegrationTests" /> | ||
| </ItemGroup> | ||
| </Project> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| <?xml version="1.0"?> | ||
| <package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> | ||
| <metadata> | ||
| $CommonMetadataElements$ | ||
| <dependencies> | ||
| <dependency id="Microsoft.SourceLink.Common" version="$Version$" /> | ||
| <dependency id="Microsoft.Build.Tasks.Git" version="$Version$" /> | ||
| </dependencies> | ||
| </metadata> | ||
| <files> | ||
| $CommonFileElements$ | ||
| <file src="$DesktopTfm$*\**\Microsoft.SourceLink.Gitee.*" exclude="**\*.config" target="tools" /> | ||
| <file src="$CoreTfm$\**\Microsoft.SourceLink.Gitee.*" target="tools\core" /> | ||
|
|
||
| <file src="$ProjectDirectory$\build\*.*" target="build" /> | ||
| <file src="$ProjectDirectory$\buildMultiTargeting\*.*" target="buildMultiTargeting" /> | ||
| </files> | ||
| </package> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| // Licensed to the .NET Foundation under one or more agreements. | ||
| // The .NET Foundation licenses this file to you under the MIT license. | ||
| // See the License.txt file in the project root for more information. | ||
|
|
||
| using Microsoft.Build.Tasks.SourceControl; | ||
|
|
||
| namespace Microsoft.SourceLink.Gitee | ||
| { | ||
| public sealed class TranslateRepositoryUrls : TranslateRepositoryUrlsGitTask | ||
| { | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the License.txt file in the project root for more information. --> | ||
| <Project> | ||
| <ItemGroup> | ||
| <SourceLinkGiteeHost Include="gitee.com" ContentUrl="https://gitee.com"/> | ||
| </ItemGroup> | ||
| </Project> |
68 changes: 68 additions & 0 deletions
68
src/SourceLink.Gitee/build/Microsoft.SourceLink.Gitee.targets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,68 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the License.txt file in the project root for more information. --> | ||
| <Project> | ||
| <PropertyGroup> | ||
| <_SourceLinkGiteeAssemblyFile Condition="'$(MSBuildRuntimeType)' != 'Core'">$(MSBuildThisFileDirectory)..\tools\net472\Microsoft.SourceLink.Gitee.dll</_SourceLinkGiteeAssemblyFile> | ||
| <_SourceLinkGiteeAssemblyFile Condition="'$(MSBuildRuntimeType)' == 'Core'">$(MSBuildThisFileDirectory)..\tools\core\Microsoft.SourceLink.Gitee.dll</_SourceLinkGiteeAssemblyFile> | ||
| </PropertyGroup> | ||
|
|
||
| <UsingTask TaskName="Microsoft.SourceLink.Gitee.GetSourceLinkUrl" AssemblyFile="$(_SourceLinkGitHubAssemblyFile)"/> | ||
| <UsingTask TaskName="Microsoft.SourceLink.Gitee.TranslateRepositoryUrls" AssemblyFile="$(_SourceLinkGitHubAssemblyFile)"/> | ||
tmat marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| <PropertyGroup> | ||
| <SourceLinkUrlInitializerTargets>$(SourceLinkUrlInitializerTargets);_InitializeGiteeSourceLinkUrl</SourceLinkUrlInitializerTargets> | ||
| <SourceControlManagerUrlTranslationTargets>$(SourceControlManagerUrlTranslationTargets);TranslateGiteeUrlsInSourceControlInformation</SourceControlManagerUrlTranslationTargets> | ||
| </PropertyGroup> | ||
|
|
||
| <Target Name="_InitializeGiteeSourceLinkUrl" Inputs="@(SourceRoot)" Outputs="|%(Identity)|"> | ||
| <!-- | ||
| The task calculates SourceLink URL for a given SourceRoot. | ||
|
|
||
| If the SourceRoot is associated with a git repository with a recognized domain the <see cref="SourceLinkUrl"/> | ||
| output property is set to the content URL corresponding to the domain, otherwise it is set to string "N/A". | ||
|
|
||
| Recognized domains are specified via Hosts (initialized from SourceLinkGiteeHost item group). | ||
| In addition, if SourceLinkHasSingleProvider is true an implicit host is parsed from RepositoryUrl. | ||
|
|
||
| Example of SourceLinkGiteeHost items: | ||
|
|
||
| <ItemGroup> | ||
| <SourceLinkGiteeHost Include="gitee.com" ContentUrl="https://gitee.com"/> | ||
| <SourceLinkGiteeHost Include="mygitee1.com" /> ContentUrl defaults to https://mygitee1.com/ | ||
| <SourceLinkGiteeHost Include="mygitee2.com:8080" /> ContentUrl defaults to https://mygitee2.com:8080/ | ||
| </ItemGroup> | ||
|
|
||
| ContentUrl is optional. If not specified it defaults to "https://{domain}". | ||
| --> | ||
| <Microsoft.SourceLink.Gitee.GetSourceLinkUrl RepositoryUrl="$(PrivateRepositoryUrl)" SourceRoot="@(SourceRoot)" Hosts="@(SourceLinkGiteeHost)" IsSingleProvider="$(SourceLinkHasSingleProvider)"> | ||
| <Output TaskParameter="SourceLinkUrl" PropertyName="_SourceLinkUrlToUpdate"/> | ||
| </Microsoft.SourceLink.Gitee.GetSourceLinkUrl> | ||
|
|
||
| <ItemGroup> | ||
| <!-- Only update the SourceLinkUrl metadata if the SourceRoot belongs to this source control --> | ||
| <SourceRoot Update="%(Identity)" SourceLinkUrl="$(_SourceLinkUrlToUpdate)" Condition="'$(_SourceLinkUrlToUpdate)' != 'N/A'"/> | ||
| </ItemGroup> | ||
| </Target> | ||
|
|
||
| <!-- | ||
| We need to translate ssh URLs to https. | ||
| --> | ||
| <Target Name="TranslateGiteeUrlsInSourceControlInformation"> | ||
|
|
||
| <ItemGroup> | ||
| <_TranslatedSourceRoot Remove="@(_TranslatedSourceRoot)"/> | ||
| </ItemGroup> | ||
|
|
||
| <Microsoft.SourceLink.Gitee.TranslateRepositoryUrls RepositoryUrl="$(ScmRepositoryUrl)" SourceRoots="@(SourceRoot)" Hosts="@(SourceLinkGiteeHost)" IsSingleProvider="$(SourceLinkHasSingleProvider)"> | ||
| <Output TaskParameter="TranslatedRepositoryUrl" PropertyName="ScmRepositoryUrl"/> | ||
| <Output TaskParameter="TranslatedSourceRoots" ItemName="_TranslatedSourceRoot"/> | ||
| </Microsoft.SourceLink.Gitee.TranslateRepositoryUrls> | ||
|
|
||
| <ItemGroup> | ||
| <SourceRoot Remove="@(SourceRoot)"/> | ||
| <SourceRoot Include="@(_TranslatedSourceRoot)"/> | ||
| </ItemGroup> | ||
|
|
||
| </Target> | ||
|
|
||
| </Project> | ||
5 changes: 5 additions & 0 deletions
5
src/SourceLink.Gitee/buildMultiTargeting/Microsoft.SourceLink.Gitee.props
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the License.txt file in the project root for more information. --> | ||
| <Project> | ||
| <Import Project="..\build\$(MSBuildThisFileName).props"/> | ||
| </Project> |
5 changes: 5 additions & 0 deletions
5
src/SourceLink.Gitee/buildMultiTargeting/Microsoft.SourceLink.Gitee.targets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the License.txt file in the project root for more information. --> | ||
| <Project> | ||
| <Import Project="..\build\$(MSBuildThisFileName).targets"/> | ||
| </Project> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> | ||
| <file datatype="xml" source-language="en" target-language="cs" original="../Resources.resx"> | ||
| <body /> | ||
| </file> | ||
| </xliff> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> | ||
| <file datatype="xml" source-language="en" target-language="de" original="../Resources.resx"> | ||
| <body /> | ||
| </file> | ||
| </xliff> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> | ||
| <file datatype="xml" source-language="en" target-language="es" original="../Resources.resx"> | ||
| <body /> | ||
| </file> | ||
| </xliff> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> | ||
| <file datatype="xml" source-language="en" target-language="fr" original="../Resources.resx"> | ||
| <body /> | ||
| </file> | ||
| </xliff> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> | ||
| <file datatype="xml" source-language="en" target-language="it" original="../Resources.resx"> | ||
| <body /> | ||
| </file> | ||
| </xliff> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> | ||
| <file datatype="xml" source-language="en" target-language="ja" original="../Resources.resx"> | ||
| <body /> | ||
| </file> | ||
| </xliff> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd"> | ||
| <file datatype="xml" source-language="en" target-language="ko" original="../Resources.resx"> | ||
| <body /> | ||
| </file> | ||
| </xliff> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.