Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"version": 1,
"isRoot": true,
"tools": {
"paket": {
"version": "10.3.1",
"commands": [
"paket"
],
"rollForward": false
},
"fake-cli": {
"version": "6.1.4",
"commands": [
"fake"
],
"rollForward": false
}
}
}
Comment thread
wallymathieu marked this conversation as resolved.
1 change: 0 additions & 1 deletion .paket/.gitignore

This file was deleted.

782 changes: 528 additions & 254 deletions .paket/Paket.Restore.targets

Large diffs are not rendered by default.

Binary file removed .paket/paket.bootstrapper.exe
Binary file not shown.
8 changes: 6 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
image: Visual Studio 2017
image: Visual Studio 2026

init:
- git config --global core.autocrlf input
install:
- ps: >
Invoke-WebRequest -Uri 'https://dot.net/v1/dotnet-install.ps1' -OutFile "$env:temp\dotnet-install.ps1";
& "$env:temp\dotnet-install.ps1" -Architecture x64 -Version '6.0.428' -InstallDir "$env:ProgramFiles\dotnet"
build_script:
- cmd: build.cmd -t All
test: off
Expand All @@ -11,4 +15,4 @@ artifacts:
name: bin
branches:
only:
- master
- master
3 changes: 2 additions & 1 deletion build.cmd
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
@echo off
cls

dotnet restore build.proj
dotnet tool restore
dotnet paket restore

IF NOT EXIST build.fsx (
dotnet fake run init.fsx
Expand Down
2 changes: 1 addition & 1 deletion build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ Target.create "AssemblyInfo" (fun _ ->
AssemblyInfo.FileVersion release.AssemblyVersion
AssemblyInfo.Configuration configuration ]

let getProjectDetails projectPath =
let getProjectDetails (projectPath: string) =
let projectName = Path.GetFileNameWithoutExtension(projectPath)
( projectPath,
projectName,
Expand Down
24 changes: 0 additions & 24 deletions build.proj

This file was deleted.

3 changes: 2 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
set -eu
set -o pipefail

dotnet restore build.proj
dotnet tool restore
dotnet paket restore

if [ ! -f build.fsx ]; then
dotnet fake run init.fsx
Expand Down
276 changes: 138 additions & 138 deletions paket.lock

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion paket.references

This file was deleted.