Skip to content

Commit 9f88f3e

Browse files
author
Magnus Gether Sørensen
committed
Updated project to VS 2019
1 parent 67166e3 commit 9f88f3e

7 files changed

Lines changed: 202 additions & 2346 deletions

File tree

XrmDefinitelyTyped.sln

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Microsoft Visual Studio Solution File, Format Version 12.00
2-
# Visual Studio 15
3-
VisualStudioVersion = 15.0.27130.2020
2+
# Visual Studio 16
3+
VisualStudioVersion = 16.0.30503.244
44
MinimumVisualStudioVersion = 10.0.40219.1
55
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".paket", ".paket", "{63297B98-5CED-492C-A5B7-A5B4F73CF142}"
66
ProjectSection(SolutionItems) = preProject

build.cmd

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,13 @@
11
@echo off
22
cls
33

4-
.paket\paket.bootstrapper.exe
4+
WHERE nuget
55
if errorlevel 1 (
6+
echo nuget not installed. Please install with Chocolatey
67
exit /b %errorlevel%
78
)
89

9-
.paket\paket.exe restore
10-
if errorlevel 1 (
11-
exit /b %errorlevel%
12-
)
13-
14-
IF NOT EXIST build.fsx (
15-
.paket\paket.exe update
16-
packages\FAKE\tools\FAKE.exe init.fsx
10+
if not exist packages\FAKE\tools\Fake.exe (
11+
nuget install FAKE -OutputDirectory packages -ExcludeVersion
1712
)
18-
packages\FAKE\tools\FAKE.exe build.fsx %*
13+
packages\FAKE\tools\FAKE.exe build.fsx %*

0 commit comments

Comments
 (0)