Skip to content
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

Runtimeidentifiers #42

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
// Use IntelliSense to find out which attributes exist for C# debugging
// Use hover for the description of the existing attributes
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
"version": "0.2.0",
"configurations": [
{
"name": "Launch WoaDeployer Gui",
"type": "clr",
"request": "launch",
"preLaunchTask": null,
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/Source/Deployer.Lumia.Gui/bin/Debug/WoaDeployer.exe",
"args": [],
"cwd": "${workspaceFolder}/Source/Deployer.Lumia.Gui/bin/Debug/",
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
"console": "internalConsole",
"stopAtEntry": false
},
{
"name": ".NET Framework Attach",
"type": "clr",
"request": "attach",
"processId": "${command:pickProcess}"
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach",
"processId": "${command:pickProcess}"
}
]
}
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"dotnet-test-explorer.testProjectPath": "**/*.Tests.csproj",
"vssolution.altSolutionFolders": [
"Source",
"Source/DeployerPlatform",
"Source/DeployerPlatform/Registry"
]
}
47 changes: 47 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Cleanup",
"command": "Get-ChildItem -Path '${workspaceFolder}/Source/*' -Include bin, obj -Recurse | Remove-Item -Force -Recurse -Verbose; dotnet nuget locals -c all;",
"type": "shell",
"group": "build",
"problemMatcher": []
},
{
"label": "Build WoaDeployer for lumia",
"command": "msb16 '/t:clean;restore;build' '${workspaceFolder}/Source/WoaDeployer for Lumia.sln'",
"type": "shell",
"group": "build",
"problemMatcher": "$msCompile"
},
{
"label": "Build Woa DeployerPlatform",
"command": "msb16 '/t:clean;restore;build' '${workspaceFolder}/Source/DeployerPlatform/Deployer Platform.sln'",
"type": "shell",
"group": "build",
"problemMatcher": "$msCompile"
},
{
"label": "Test WoaDeployer for lumia",
"command": "vst16 '${workspaceFolder}/Source/Deployer.Lumia.Tests/bin/debug/Deployer.Lumia.Tests.dll'",
"type": "shell",
"group": "build",
"problemMatcher": []
},
{
"label": "Test Woa DeployerPlatform Deployer",
"command": "vst16 '${workspaceFolder}/Source/DeployerPlatform/Deployer.Tests/bin/debug/netcoreapp2.1/Deployer.Tests.dll'",
"type": "shell",
"group": "build",
"problemMatcher": []
},
{
"label": "Test Woa DeployerPlatform NetFx",
"command": "vst16 '${workspaceFolder}/Source/DeployerPlatform/Deployer.NetFx.Tests/bin/debug/net472/Deployer.NetFx.Tests.dll'",
"type": "shell",
"group": "build",
"problemMatcher": []
}
]
}
6 changes: 4 additions & 2 deletions Source/Deployer.Lumia.Console/Deployer.Lumia.Console.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<OutputType>Library</OutputType>
<RootNamespace>Deployer.Lumia.Console</RootNamespace>
<AssemblyName>Deployer.Lumia.Console</AssemblyName>
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
Expand All @@ -35,7 +35,9 @@
<WarningLevel>4</WarningLevel>
<LangVersion>7.1</LangVersion>
</PropertyGroup>
<PropertyGroup />
<PropertyGroup>
<RuntimeIdentifier>win</RuntimeIdentifier>
</PropertyGroup>
<PropertyGroup>
<StartupObject />
</PropertyGroup>
Expand Down
3 changes: 3 additions & 0 deletions Source/Deployer.Lumia.Gui/Deployer.Lumia.Gui.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<RuntimeIdentifier>win</RuntimeIdentifier>
</PropertyGroup>
<PropertyGroup>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
Expand Down
1 change: 1 addition & 0 deletions Source/Deployer.Lumia/Deployer.Lumia.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RuntimeIdentifier>win</RuntimeIdentifier>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Source/DeployerPlatform
9 changes: 0 additions & 9 deletions Source/WoaDeployer for Lumia.sln
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Deployer", "DeployerPlatfor
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Deployer.NetFx", "DeployerPlatform\Deployer.NetFx\Deployer.NetFx.csproj", "{FBEDAF0E-E2ED-4005-8D83-F980FA67FEB2}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Registry", "DeployerPlatform\Registry\Registry\Registry.csproj", "{C14523F8-313E-4338-B04B-7C15EC730FFD}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Zafiro.Core", "DeployerPlatform\Zafiro\Zafiro.Core\Zafiro.Core.csproj", "{FC32478F-26EA-4774-878C-92B08E468ABA}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Deployer.Lumia.Tests", "Deployer.Lumia.Tests\Deployer.Lumia.Tests.csproj", "{06F14C7E-E1B3-4B97-A4B1-D778ABC4FC4F}"
Expand Down Expand Up @@ -70,12 +68,6 @@ Global
{FBEDAF0E-E2ED-4005-8D83-F980FA67FEB2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FBEDAF0E-E2ED-4005-8D83-F980FA67FEB2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FBEDAF0E-E2ED-4005-8D83-F980FA67FEB2}.Release|Any CPU.Build.0 = Release|Any CPU
{C14523F8-313E-4338-B04B-7C15EC730FFD}.Analysis|Any CPU.ActiveCfg = Release|Any CPU
{C14523F8-313E-4338-B04B-7C15EC730FFD}.Analysis|Any CPU.Build.0 = Release|Any CPU
{C14523F8-313E-4338-B04B-7C15EC730FFD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C14523F8-313E-4338-B04B-7C15EC730FFD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C14523F8-313E-4338-B04B-7C15EC730FFD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C14523F8-313E-4338-B04B-7C15EC730FFD}.Release|Any CPU.Build.0 = Release|Any CPU
{FC32478F-26EA-4774-878C-92B08E468ABA}.Analysis|Any CPU.ActiveCfg = Release|Any CPU
{FC32478F-26EA-4774-878C-92B08E468ABA}.Analysis|Any CPU.Build.0 = Release|Any CPU
{FC32478F-26EA-4774-878C-92B08E468ABA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
Expand Down Expand Up @@ -131,7 +123,6 @@ Global
GlobalSection(NestedProjects) = preSolution
{20D40DC1-0237-47A0-B169-B420159E341C} = {37EB1151-97FC-4910-BA90-DB0AA05EA107}
{FBEDAF0E-E2ED-4005-8D83-F980FA67FEB2} = {37EB1151-97FC-4910-BA90-DB0AA05EA107}
{C14523F8-313E-4338-B04B-7C15EC730FFD} = {37EB1151-97FC-4910-BA90-DB0AA05EA107}
{FC32478F-26EA-4774-878C-92B08E468ABA} = {37EB1151-97FC-4910-BA90-DB0AA05EA107}
{0F950392-CEA6-466D-B91F-987C21EC7B24} = {37EB1151-97FC-4910-BA90-DB0AA05EA107}
{FD4462AC-5EB1-4923-A5D6-83DE6C102817} = {37EB1151-97FC-4910-BA90-DB0AA05EA107}
Expand Down
5 changes: 5 additions & 0 deletions global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"sdk": {
"version": "2.2.300"
}
}