I hereby claim:
- I am nkolev92 on github.
- I am nikolchekolev (https://keybase.io/nikolchekolev) on keybase.
- I have a public key ASDRrH7O4v16FariwBUstemTrPLgjO3xsx_9MTwDvh-Xogo
To claim this, I am signing this object:
| { | |
| "version": 3, | |
| "targets": { | |
| ".NETCoreApp,Version=v2.1": { | |
| "Microsoft.AspNet.WebApi.Client/5.2.6": { | |
| "type": "package", | |
| "dependencies": { | |
| "Newtonsoft.Json": "10.0.1", | |
| "Newtonsoft.Json.Bson": "1.0.1" | |
| }, |
| { | |
| "version": 3, | |
| "targets": { | |
| ".NETFramework,Version=v4.6": { | |
| "Newtonsoft.Json/9.0.1": { | |
| "type": "package", | |
| "compile": { | |
| "lib/net45/Newtonsoft.Json.dll": {} | |
| }, | |
| "runtime": { |
| { | |
| "version": 3, | |
| "targets": { | |
| ".NETCoreApp,Version=v2.0": { | |
| "Microsoft.NETCore.App/2.0.0": { | |
| "type": "package", | |
| "dependencies": { | |
| "Microsoft.NETCore.DotNetHostPolicy": "2.0.0", | |
| "Microsoft.NETCore.Platforms": "2.0.0", | |
| "NETStandard.Library": "2.0.0" |
| { | |
| "version": 3, | |
| "targets": { | |
| ".NETCoreApp,Version=v1.1": { | |
| "Libuv/1.9.1": { | |
| "type": "package", | |
| "dependencies": { | |
| "Microsoft.NETCore.Platforms": "1.0.1" | |
| }, | |
| "runtimeTargets": { |
| <Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> | |
| <PropertyGroup> | |
| <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | |
| <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | |
| <OutputType>Exe</OutputType> | |
| <AppDesignerFolder>Properties</AppDesignerFolder> | |
| <RootNamespace>TestSolution</RootNamespace> | |
| <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> | |
| <FileAlignment>512</FileAlignment> |
I hereby claim:
To claim this, I am signing this object:
| NetCoreProjectTest.ps1 | |
| function Test-NetCoreConsoleAppRebuildDoesNotDeleteCacheFile { | |
| # Arrange & Act | |
| $project = New-NetCoreConsoleApp ConsoleApp | |
| Build-Solution | |
| Assert-ProjectCacheFileExists $project |
| $nugetClientRoot="C:\Code\Nuget.Client" | |
| Function Run-NuGetTargetsCustom($projectPath, $target, $extra) | |
| { | |
| $buildPath = Join-Path $nugetClientRoot "src\NuGet.Core\NuGet.Build.Tasks" | |
| $publishDllPath = Join-Path $nugetClientRoot "artifacts\NuGet.Build.Tasks\15.0\bin\Debug\net45\NuGet.Build.Tasks.dll" | |
| $targetsPath = Join-Path $nugetClientRoot "src\NuGet.Core\NuGet.Build.Tasks\NuGet.targets" | |
| Write-Host "msbuild $projectPath /t:$target /p:NuGetRestoreTargets=$targetsPath /p:RestoreTaskAssemblyFile=$publishDllPath $extra" | |
| & msbuild $projectPath /t:$target /p:NuGetRestoreTargets=$targetsPath /p:RestoreTaskAssemblyFile=$publishDllPath $extra | |
| } |