mirror of https://github.com/SixLabors/ImageSharp
Browse Source
Former-commit-id: 071acbb9cdf1d0a65970a1b2190e98d3b3c4ca87 Former-commit-id: c7cac17561247082c81f8805c1121396ffbc2b1f Former-commit-id: 0f868f35cd2aaa5897e934023487be6ab7fa8292af/merge-core
15 changed files with 130 additions and 133 deletions
@ -0,0 +1,29 @@ |
|||
# Set up everything for using the dotnet cli. This should mean we do not have to wait for Appveyor images to be updated. |
|||
|
|||
# Clean and recreate the folder in which all output packages should be placed |
|||
$ArtifactsPath = "artifacts" |
|||
|
|||
if (Test-Path $ArtifactsPath) { |
|||
Remove-Item -Path $ArtifactsPath -Recurse -Force -ErrorAction Ignore |
|||
} |
|||
|
|||
New-Item $ArtifactsPath -ItemType Directory -ErrorAction Ignore | Out-Null |
|||
|
|||
Write-Host "Created artifacts folder '$ArtifactsPath'" |
|||
|
|||
# Install the latest dotnet cli |
|||
if (Get-Command "dotnet.exe" -ErrorAction SilentlyContinue) { |
|||
Write-Host "dotnet SDK already installed" |
|||
dotnet --version |
|||
} else { |
|||
Write-Host "Installing dotnet SDK" |
|||
|
|||
$installScript = Join-Path $ArtifactsPath "dotnet-install.ps1" |
|||
|
|||
Write-Host $installScript |
|||
|
|||
Invoke-WebRequest "https://raw.githubusercontent.com/dotnet/cli/rel/1.0.0/scripts/obtain/install.ps1" ` |
|||
-OutFile $installScript |
|||
|
|||
& $installScript |
|||
} |
|||
@ -1,8 +1,6 @@ |
|||
{ |
|||
"projects": [ "src" ], |
|||
"sdk": { |
|||
"version": "1.0.0-rc1-update1", |
|||
"runtime": "coreclr", |
|||
"architecture": "x64" |
|||
} |
|||
"projects": [ "src" ], |
|||
"sdk": { |
|||
"version": "1.0.0-preview1-002702" |
|||
} |
|||
} |
|||
@ -1,9 +0,0 @@ |
|||
<?xml version="1.0" encoding="utf-8" standalone="no"?> |
|||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|||
<PropertyGroup Condition="'$(NuGetPackageRoot)' == ''"> |
|||
<NuGetPackageRoot>C:\Users\James\.nuget\packages\</NuGetPackageRoot> |
|||
</PropertyGroup> |
|||
<ImportGroup> |
|||
<Import Project="$(NuGetPackageRoot)\NuSpec.ReferenceGenerator\1.3.6\build\dotnet\NuSpec.ReferenceGenerator.targets" Condition="Exists('$(NuGetPackageRoot)\NuSpec.ReferenceGenerator\1.3.6\build\dotnet\NuSpec.ReferenceGenerator.targets')" /> |
|||
</ImportGroup> |
|||
</Project> |
|||
@ -1,21 +0,0 @@ |
|||
<?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>2aa31a1f-142c-43f4-8687-09abca4b3a26</ProjectGuid> |
|||
<RootNamespace>ImageProcessor</RootNamespace> |
|||
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">..\..\artifacts\obj\$(MSBuildProjectName)</BaseIntermediateOutputPath> |
|||
<OutputPath Condition="'$(OutputPath)'=='' ">..\..\artifacts\bin\$(MSBuildProjectName)\</OutputPath> |
|||
</PropertyGroup> |
|||
<PropertyGroup> |
|||
<SchemaVersion>2.0</SchemaVersion> |
|||
</PropertyGroup> |
|||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
|||
<ProduceOutputsOnBuild>True</ProduceOutputsOnBuild> |
|||
</PropertyGroup> |
|||
<Import Project="$(VSToolsPath)\DNX\Microsoft.DNX.targets" Condition="'$(VSToolsPath)' != ''" /> |
|||
</Project> |
|||
Loading…
Reference in new issue