-
Notifications
You must be signed in to change notification settings - Fork 331
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
302 changed files
with
25,679 additions
and
624 deletions.
There are no files selected for viewing
This file contains 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 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 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 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,20 @@ | ||
<?xml version="1.0"?> | ||
<package > | ||
<metadata> | ||
<id>Microsoft.NET.Test.Sdk</id> | ||
<version>1.0.0-preview</version> | ||
<title>The MSbuild targets and properties for building the .Net core test projects.</title> | ||
<authors>Microsoft</authors> | ||
<owners>Microsoft</owners> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>The MSbuild targets and properties for building the .Net core test projects.</description> | ||
<copyright>Copyright 2015</copyright> | ||
<dependencies> | ||
<dependency id="Microsoft.TestPlatform.TestHost" version="15.0.0-preview-20161012-02" /> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="Microsoft.NET.Test.Sdk.targets" target="build\netcoreapp1.0\" /> | ||
<file src="Microsoft.NET.Test.Sdk.targets" target="build\net46\" /> | ||
</files> | ||
</package> |
This file contains 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,65 @@ | ||
<!-- | ||
*********************************************************************************************** | ||
Microsoft.NET.Test.Sdk.targets | ||
WARNING: DO NOT MODIFY this file unless you are knowledgeable about MSBuild and have | ||
created a backup copy. Incorrect changes to this file will make it | ||
impossible to load or build your test projects from the command-line or the IDE. | ||
Copyright (c) Microsoft. All rights reserved. | ||
*********************************************************************************************** | ||
--> | ||
|
||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
|
||
<!-- | ||
============================================================ | ||
GenerateProgramFile | ||
Generates Program file which contains the Main entry point | ||
============================================================ | ||
--> | ||
<PropertyGroup> | ||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> | ||
<GeneratedProgramFile Condition="'$(GeneratedProgramFile)' ==''">$(IntermediateOutputPath)$(MSBuildProjectName).Program$(DefaultLanguageSourceExtension)</GeneratedProgramFile> | ||
<GenerateProgramFile Condition="'$(GenerateProgramFile)' == ''">true</GenerateProgramFile> | ||
</PropertyGroup> | ||
<!-- | ||
Note that this must run before every invocation of CoreCompile to ensure that all | ||
compiler runs see the generated Program file. Furthermore, we must run *after* | ||
PrepareForBuild to ensure that the intermediate directory has been created. | ||
--> | ||
|
||
<Target Name="GenerateProgramFile" | ||
BeforeTargets="CoreCompile" | ||
DependsOnTargets="PrepareForBuild;CoreGenerateProgramFile" | ||
Condition="'$(GenerateProgramFile)' == 'true'" /> | ||
|
||
<Target Name="CoreGenerateProgramFile" | ||
Condition="'$(Language)'=='VB' or '$(Language)'=='C#'" | ||
Inputs="$(MSBuildAllProjects)" | ||
Outputs="$(GeneratedProgramFile)"> | ||
|
||
<ItemGroup Condition="'$(Language)'=='C#'"> | ||
<Line Include="using System%3b "/> | ||
<Line Include="class Program {static void Main(string[] args){}}"/> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(Language)'=='VB'"> | ||
<Line Include="Imports System"/> | ||
<Line Include="Module Program"/> | ||
<Line Include="Sub Main(args As String())"/> | ||
<Line Include="End Sub"/> | ||
<Line Include="End Module"/> | ||
</ItemGroup> | ||
<WriteLinesToFile | ||
File="$(GeneratedProgramFile)" Lines="@(Line)" Overwrite="true" Encoding="Unicode"> | ||
</WriteLinesToFile> | ||
|
||
<!-- | ||
Compile Include the generated Program File | ||
--> | ||
<ItemGroup> | ||
<Compile Include="$(GeneratedProgramFile)"/> | ||
</ItemGroup> | ||
</Target> | ||
</Project> |
This file contains 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 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
6 changes: 3 additions & 3 deletions
6
...TestPlatform.Client/Resources.Designer.cs → ...rm.Client/Resources/Resources.Designer.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
File renamed without changes.
17 changes: 17 additions & 0 deletions
17
src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.cs.xlf
This file contains 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,17 @@ | ||
<?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> | ||
<trans-unit id="InvalidStateForExecution"> | ||
<source>The test run could not be executed because the initial state was invalid.</source> | ||
<target state="new">The test run could not be executed because the initial state was invalid.</target> | ||
<note></note> | ||
</trans-unit> | ||
<trans-unit id="WaitForCompletionOperationIsNotAllowedWhenNoTestRunIsActive"> | ||
<source>Wait for completion operation is not allowed when there is no active test run. </source> | ||
<target state="new">Wait for completion operation is not allowed when there is no active test run. </target> | ||
<note></note> | ||
</trans-unit> | ||
</body> | ||
</file> | ||
</xliff> |
17 changes: 17 additions & 0 deletions
17
src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.de.xlf
This file contains 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,17 @@ | ||
<?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> | ||
<trans-unit id="InvalidStateForExecution"> | ||
<source>The test run could not be executed because the initial state was invalid.</source> | ||
<target state="new">The test run could not be executed because the initial state was invalid.</target> | ||
<note></note> | ||
</trans-unit> | ||
<trans-unit id="WaitForCompletionOperationIsNotAllowedWhenNoTestRunIsActive"> | ||
<source>Wait for completion operation is not allowed when there is no active test run. </source> | ||
<target state="new">Wait for completion operation is not allowed when there is no active test run. </target> | ||
<note></note> | ||
</trans-unit> | ||
</body> | ||
</file> | ||
</xliff> |
17 changes: 17 additions & 0 deletions
17
src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.es.xlf
This file contains 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,17 @@ | ||
<?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> | ||
<trans-unit id="InvalidStateForExecution"> | ||
<source>The test run could not be executed because the initial state was invalid.</source> | ||
<target state="new">The test run could not be executed because the initial state was invalid.</target> | ||
<note></note> | ||
</trans-unit> | ||
<trans-unit id="WaitForCompletionOperationIsNotAllowedWhenNoTestRunIsActive"> | ||
<source>Wait for completion operation is not allowed when there is no active test run. </source> | ||
<target state="new">Wait for completion operation is not allowed when there is no active test run. </target> | ||
<note></note> | ||
</trans-unit> | ||
</body> | ||
</file> | ||
</xliff> |
17 changes: 17 additions & 0 deletions
17
src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.fr.xlf
This file contains 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,17 @@ | ||
<?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> | ||
<trans-unit id="InvalidStateForExecution"> | ||
<source>The test run could not be executed because the initial state was invalid.</source> | ||
<target state="new">The test run could not be executed because the initial state was invalid.</target> | ||
<note></note> | ||
</trans-unit> | ||
<trans-unit id="WaitForCompletionOperationIsNotAllowedWhenNoTestRunIsActive"> | ||
<source>Wait for completion operation is not allowed when there is no active test run. </source> | ||
<target state="new">Wait for completion operation is not allowed when there is no active test run. </target> | ||
<note></note> | ||
</trans-unit> | ||
</body> | ||
</file> | ||
</xliff> |
17 changes: 17 additions & 0 deletions
17
src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.it.xlf
This file contains 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,17 @@ | ||
<?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> | ||
<trans-unit id="InvalidStateForExecution"> | ||
<source>The test run could not be executed because the initial state was invalid.</source> | ||
<target state="new">The test run could not be executed because the initial state was invalid.</target> | ||
<note></note> | ||
</trans-unit> | ||
<trans-unit id="WaitForCompletionOperationIsNotAllowedWhenNoTestRunIsActive"> | ||
<source>Wait for completion operation is not allowed when there is no active test run. </source> | ||
<target state="new">Wait for completion operation is not allowed when there is no active test run. </target> | ||
<note></note> | ||
</trans-unit> | ||
</body> | ||
</file> | ||
</xliff> |
17 changes: 17 additions & 0 deletions
17
src/Microsoft.TestPlatform.Client/Resources/xlf/Resources.ja.xlf
This file contains 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,17 @@ | ||
<?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> | ||
<trans-unit id="InvalidStateForExecution"> | ||
<source>The test run could not be executed because the initial state was invalid.</source> | ||
<target state="new">The test run could not be executed because the initial state was invalid.</target> | ||
<note></note> | ||
</trans-unit> | ||
<trans-unit id="WaitForCompletionOperationIsNotAllowedWhenNoTestRunIsActive"> | ||
<source>Wait for completion operation is not allowed when there is no active test run. </source> | ||
<target state="new">Wait for completion operation is not allowed when there is no active test run. </target> | ||
<note></note> | ||
</trans-unit> | ||
</body> | ||
</file> | ||
</xliff> |
Oops, something went wrong.