forked from dotnet/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introducing a new library to hold file system related abstractions. M…
…aking the E2E tests work with dotnet test
- Loading branch information
Showing
10 changed files
with
102 additions
and
25 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
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,18 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0</VisualStudioVersion> | ||
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath> | ||
</PropertyGroup> | ||
<Import Project="$(VSToolsPath)\DNX\Microsoft.DNX.Props" Condition="'$(VSToolsPath)' != ''" /> | ||
<PropertyGroup Label="Globals"> | ||
<ProjectGuid>d521dd9f-0614-4929-93b4-d8fa5682c174</ProjectGuid> | ||
<RootNamespace>Microsoft.DotNet.Files</RootNamespace> | ||
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">..\..\artifacts\obj\$(MSBuildProjectName)</BaseIntermediateOutputPath> | ||
<OutputPath Condition="'$(OutputPath)'=='' ">..\..\artifacts\bin\$(MSBuildProjectName)\</OutputPath> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<SchemaVersion>2.0</SchemaVersion> | ||
</PropertyGroup> | ||
<Import Project="$(VSToolsPath)\DNX\Microsoft.DNX.targets" Condition="'$(VSToolsPath)' != ''" /> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"version": "1.0.0-*", | ||
"compilationOptions": { | ||
"keyFile": "../../tools/Key.snk" | ||
}, | ||
"description": "Abstraction to interact with the file system and file paths.", | ||
"dependencies": { | ||
"NETStandard.Library": "1.0.0-rc2-23727", | ||
"System.Linq.Expressions": "4.0.11-rc2-23727", | ||
|
||
"Microsoft.Extensions.FileSystemGlobbing": "1.0.0-rc2-15975", | ||
|
||
"Microsoft.DotNet.Cli.Utils": { | ||
"type": "build", | ||
"version": "1.0.0-*" | ||
}, | ||
|
||
"Microsoft.DotNet.ProjectModel": { | ||
"type": "build", | ||
"version": "1.0.0-*" | ||
} | ||
}, | ||
|
||
"frameworks": { | ||
"dnxcore50": { | ||
"imports": "portable-net45+win8" | ||
} | ||
}, | ||
"scripts": { | ||
} | ||
} |
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 |
---|---|---|
@@ -1,25 +1,26 @@ | ||
{ | ||
"version": "1.0.0-*", | ||
"compilationOptions": { | ||
"emitEntryPoint": true | ||
}, | ||
"version": "1.0.0-*", | ||
"compilationOptions": { | ||
"emitEntryPoint": true | ||
}, | ||
|
||
"dependencies": { | ||
"NETStandard.Library" : "1.0.0-rc2-23728", | ||
"dependencies": { | ||
"NETStandard.Library": "1.0.0-rc2-23728", | ||
|
||
"xunit": "2.1.0", | ||
"xunit.console.netcore": "1.0.2-prerelease-00101", | ||
"xunit.netcore.extensions": "1.0.0-prerelease-00153", | ||
"xunit.runner.utility": "2.1.0", | ||
"Microsoft.DotNet.ProjectModel": { "target": "project" }, | ||
"Microsoft.DotNet.Cli.Utils": { "target": "project" }, | ||
"Microsoft.DotNet.Tools.Tests.Utilities": { "target": "project" }, | ||
|
||
"Microsoft.DotNet.ProjectModel": {"target":"project"}, | ||
"Microsoft.DotNet.Cli.Utils": {"target":"project"}, | ||
"Microsoft.DotNet.Tools.Tests.Utilities": {"target":"project"} | ||
}, | ||
"xunit": "2.1.0", | ||
"xunit.netcore.extensions": "1.0.0-prerelease-*", | ||
"dotnet-test-xunit": "1.0.0-dev-45337-57" | ||
}, | ||
|
||
"frameworks": { | ||
"dnxcore50": { | ||
"imports": "portable-net45+win8" | ||
} | ||
"frameworks": { | ||
"dnxcore50": { | ||
"imports": "portable-net45+win8" | ||
} | ||
}, | ||
|
||
"testRunner": "xunit" | ||
} |
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