mirror of
https://github.com/sshnet/SSH.NET.git
synced 2026-09-10 17:25:51 +00:00
6d8f545bb4
* Introduced VS 2017 solution * Use MSBuild-based project for .NET Core. * Removed Renci.SshNet.NETCore project from VS 2015 solution (as only VS 2017 supports MSBuild-based project for .NET Core) * Added build script since MSBuild v15.0 cannot be used to build the VS 2012 solution (pfffff).
12 lines
426 B
Batchfile
12 lines
426 B
Batchfile
@echo off
|
|
|
|
set MSBUILD14_EXE=%ProgramFiles(x86)%\MSBuild\14.0\Bin\MSBuild.exe
|
|
set MSBUILD15_EXE=%ProgramFiles(x86)%\Microsoft Visual Studio\2017\Enterprise\\MSBuild\15.0\bin\MSBuild.exe
|
|
|
|
call "%MSBUILD14_EXE%" build.proj /t:Clean
|
|
call "%MSBUILD15_EXE%" build.proj /t:Clean
|
|
|
|
call "%MSBUILD14_EXE%" build.proj /t:Build
|
|
call "%MSBUILD15_EXE%" build.proj /t:Build
|
|
|
|
call "%MSBUILD15_EXE%" build.proj /t:Package /p:ReleaseVersion=%1 |