diff --git a/README.md b/README.md index 3f69212..99d0641 100644 --- a/README.md +++ b/README.md @@ -97,12 +97,12 @@ std::for_each(std::begin(answers), std::end(answers), [](int answer) { [![Build status](https://ci.appveyor.com/api/projects/status/github/olegsych/simply.collections?branch=master)](https://ci.appveyor.com/project/olegsych/simply-collections/branch/master) -From [Visual Studio 2015](https://www.visualstudio.com/downloads): +From [Visual Studio 2017](https://www.visualstudio.com/downloads): - Open `simply.collections.sln` - Select _Build Solution_ from the _Build_ menu - To switch build between `x86` and `x64` platforms, select _Configuration Manager_ from the _Build_ menu and change the _Active Solution Configuration_ -From [Developer Command Prompt for VS2015](https://msdn.microsoft.com/en-us/library/ms229859.aspx): +From [Developer Command Prompt for VS2017](https://docs.microsoft.com/en-us/dotnet/framework/tools/developer-command-prompt-for-vs): ``` msbuild simply.collections.sln /p:Platform=x86 msbuild simply.collections.sln /p:Platform=x64 @@ -110,11 +110,11 @@ msbuild simply.collections.sln /p:Platform=x64 ## test -From Visual Studio 2015: +From Visual Studio 2017: - Select _Run_ / _All Tests_ from the _Test_ menu - To switch test execution between `x86` and `x64` platform, select _Test Settings_ from the _Test_ menu and change the _Default Processor Architecture_. -From Developer Command Prompt for VS2015: +From Developer Command Prompt for VS2017: ``` vstest.console bin\Win32\test.dll /Platform:x86 vstest.console bin\x64\test.dll /Platform:x64 /inIsolation diff --git a/appveyor.yml b/appveyor.yml index a576802..eb0469d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -12,10 +12,9 @@ branches: skip_tags: true -os: Visual Studio 2015 +image: Visual Studio 2017 build_script: -- set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH% - nuget restore - msbuild simply.collections.sln /m /p:Platform=x86 /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" - msbuild simply.collections.sln /m /p:Platform=x64 /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" @@ -33,11 +32,11 @@ artifacts: deploy: - provider: NuGet api_key: - secure: MllAarE5OQzLPrMNz2oSYIv2A197InquS37HPJ37FyFqrS7WQ1IroGaKol+LCBLG + secure: 236NXQ/p6GSTraxqHTtmNVFcDJlTwDjwxzbdJIcDpk8Lu7hAkz1ThK6eqeVeTMz6 skip_symbols: true - provider: GitHub auth_token: - secure: 2jrhsfBWvcjqAsyB5QdvDKXHdpnY0VjOej29DqzjrheWsTcToI3cn5ZOACfC17FP + secure: 0odiqbMNXJj+DNBK/pFP5to5mGxy1JfdSpA6dUA233dNgQitI78fjDm5vgmafgpR artifact: /.*\.nupkg/ nuget: diff --git a/src/src.vcxproj b/src/src.vcxproj index d46848b..8785621 100644 --- a/src/src.vcxproj +++ b/src/src.vcxproj @@ -1,5 +1,5 @@  - + Debug @@ -11,12 +11,7 @@ - - - - - - + @@ -26,10 +21,10 @@ {F99792FC-9EE5-4540-8D22-84AB92910790} Win32Proj src - 8.1 + 10.0.15063.0 StaticLibrary true - v140 + v141 Unicode diff --git a/test/packages.config b/test/packages.config index f398b7b..661dd5c 100644 --- a/test/packages.config +++ b/test/packages.config @@ -1,5 +1,5 @@  - - + + \ No newline at end of file diff --git a/test/test.vcxproj b/test/test.vcxproj index 2e74c9f..91d1602 100644 --- a/test/test.vcxproj +++ b/test/test.vcxproj @@ -1,5 +1,5 @@  - + Debug @@ -14,10 +14,10 @@ {863ED068-C319-4F18-90E6-FF9F282576CA} Win32Proj test - 8.1 + 10.0.15063.0 DynamicLibrary true - v140 + v141 Unicode false true @@ -41,13 +41,8 @@ - - - - - - - + + @@ -55,14 +50,14 @@ - - + + This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - + + \ No newline at end of file