-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merging the .NET Core version into master is the first step in unifying the two code bases into a single cross-platform one. From this point on there will be only one canonical version of Linker and that's the one built on ASP.NET Core.
- Loading branch information
Showing
41 changed files
with
1,112 additions
and
318 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
dist: trusty | ||
language: csharp | ||
install: true | ||
mono: latest | ||
dotnet: 1.0.4 | ||
mono: none | ||
dotnet: 2.1.500 | ||
sudo: required | ||
branches: | ||
only: | ||
- netcore | ||
- master | ||
script: | ||
- ./build.sh -t Deploy | ||
- ./build.sh --target=Deploy | ||
env: | ||
- DeployTo="https://linker-demo.scm.azurewebsites.net/api/zip/site/wwwroot/Linker" | ||
- DeployTo="https://linker-demo.scm.azurewebsites.net/api/zipdeploy" |
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,7 @@ | ||
{ | ||
"recommendations": [ | ||
"ms-vscode.csharp", | ||
"cake-build.cake-vscode", | ||
"humao.rest-client" | ||
] | ||
} |
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,23 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": ".NET Core Launch (console)", | ||
"type": "coreclr", | ||
"request": "launch", | ||
"preLaunchTask": "build", | ||
"program": "${workspaceRoot}/src/Linker/bin/Debug/netcoreapp1.0/Linker.dll", | ||
"args": [], | ||
"cwd": "${workspaceRoot}", | ||
"externalConsole": false, | ||
"stopAtEntry": false, | ||
"internalConsoleOptions": "openOnSessionStart" | ||
}, | ||
{ | ||
"name": ".NET Core Attach", | ||
"type": "coreclr", | ||
"request": "attach", | ||
"processId": "${command.pickProcess}" | ||
} | ||
] | ||
} |
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,24 @@ | ||
{ | ||
"version": "0.1.0", | ||
"command": "dotnet", | ||
"isShellCommand": true, | ||
"args": [], | ||
"tasks": [ | ||
{ | ||
"taskName": "build", | ||
"args": [ | ||
"src/Linker/Linker.csproj" | ||
], | ||
"isBuildCommand": true, | ||
"problemMatcher": "$msCompile" | ||
}, | ||
{ | ||
"taskName": "test", | ||
"args": [ | ||
"test/Linker.Tests/Linker.Tests.csproj" | ||
], | ||
"isTestCommand": true, | ||
"problemMatcher": "$msCompile" | ||
} | ||
] | ||
} |
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,55 @@ | ||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio 15 | ||
VisualStudioVersion = 15.0.26124.0 | ||
MinimumVisualStudioVersion = 15.0.26124.0 | ||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{6AF842E6-59EE-4942-88EC-845292B06D17}" | ||
EndProject | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Linker", "src\Linker\Linker.csproj", "{1029B774-6D12-450F-8835-90BBDFE97074}" | ||
EndProject | ||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{43935B06-12F3-4E46-BF6D-F1392269E747}" | ||
EndProject | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Linker.Tests", "test\Linker.Tests\Linker.Tests.csproj", "{34BA46AE-8759-4F3C-B158-DA39FBD8234C}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Debug|x64 = Debug|x64 | ||
Debug|x86 = Debug|x86 | ||
Release|Any CPU = Release|Any CPU | ||
Release|x64 = Release|x64 | ||
Release|x86 = Release|x86 | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{1029B774-6D12-450F-8835-90BBDFE97074}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{1029B774-6D12-450F-8835-90BBDFE97074}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{1029B774-6D12-450F-8835-90BBDFE97074}.Debug|x64.ActiveCfg = Debug|x64 | ||
{1029B774-6D12-450F-8835-90BBDFE97074}.Debug|x64.Build.0 = Debug|x64 | ||
{1029B774-6D12-450F-8835-90BBDFE97074}.Debug|x86.ActiveCfg = Debug|x86 | ||
{1029B774-6D12-450F-8835-90BBDFE97074}.Debug|x86.Build.0 = Debug|x86 | ||
{1029B774-6D12-450F-8835-90BBDFE97074}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{1029B774-6D12-450F-8835-90BBDFE97074}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{1029B774-6D12-450F-8835-90BBDFE97074}.Release|x64.ActiveCfg = Release|x64 | ||
{1029B774-6D12-450F-8835-90BBDFE97074}.Release|x64.Build.0 = Release|x64 | ||
{1029B774-6D12-450F-8835-90BBDFE97074}.Release|x86.ActiveCfg = Release|x86 | ||
{1029B774-6D12-450F-8835-90BBDFE97074}.Release|x86.Build.0 = Release|x86 | ||
{34BA46AE-8759-4F3C-B158-DA39FBD8234C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{34BA46AE-8759-4F3C-B158-DA39FBD8234C}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{34BA46AE-8759-4F3C-B158-DA39FBD8234C}.Debug|x64.ActiveCfg = Debug|x64 | ||
{34BA46AE-8759-4F3C-B158-DA39FBD8234C}.Debug|x64.Build.0 = Debug|x64 | ||
{34BA46AE-8759-4F3C-B158-DA39FBD8234C}.Debug|x86.ActiveCfg = Debug|x86 | ||
{34BA46AE-8759-4F3C-B158-DA39FBD8234C}.Debug|x86.Build.0 = Debug|x86 | ||
{34BA46AE-8759-4F3C-B158-DA39FBD8234C}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{34BA46AE-8759-4F3C-B158-DA39FBD8234C}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{34BA46AE-8759-4F3C-B158-DA39FBD8234C}.Release|x64.ActiveCfg = Release|x64 | ||
{34BA46AE-8759-4F3C-B158-DA39FBD8234C}.Release|x64.Build.0 = Release|x64 | ||
{34BA46AE-8759-4F3C-B158-DA39FBD8234C}.Release|x86.ActiveCfg = Release|x86 | ||
{34BA46AE-8759-4F3C-B158-DA39FBD8234C}.Release|x86.Build.0 = Release|x86 | ||
EndGlobalSection | ||
GlobalSection(NestedProjects) = preSolution | ||
{1029B774-6D12-450F-8835-90BBDFE97074} = {6AF842E6-59EE-4942-88EC-845292B06D17} | ||
{34BA46AE-8759-4F3C-B158-DA39FBD8234C} = {43935B06-12F3-4E46-BF6D-F1392269E747} | ||
EndGlobalSection | ||
EndGlobal |
Oops, something went wrong.