Skip to content

Commit 6fe0442

Browse files
[build] prep for a prerelease targeting XF 4.0 (#33)
* [build] prep for a prerelease targeting XF 4.0 Let's also create build artifacts on AppVeyor of the nupkg files [appveyor] we need to *package* the NuGet
1 parent c3b2591 commit 6fe0442

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ Make sure to choose the appropriate version of this package for the version of X
163163

164164
| Xamarin.Forms | Xamarin.Forms.Mocks |
165165
| -------------- | ------------------- |
166+
| 4.0.0.x | 4.0.0.x |
166167
| 3.0.0.x | 3.0.0.x |
167168
| 2.5.0.x | 2.5.0.x |
168169
| 2.4.0.x | 2.4.0.x |

Xamarin.Forms.Mocks.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<releaseNotes>Upgraded to netstandard2.0</releaseNotes>
1616
<tags>Xamarin, Xamarin.Forms, Mocks, Unit Testing</tags>
1717
<dependencies>
18-
<dependency id="Xamarin.Forms" version="3.0.0.446417" />
18+
<dependency id="Xamarin.Forms" version="4.0.0.8055-pre1" />
1919
</dependencies>
2020
</metadata>
2121
</package>

appveyor.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
version: '{build}'
22
image: Visual Studio 2017
33
build_script:
4-
- ps: .\build.ps1 -t Build
4+
- ps: .\build.ps1 -t NuGet-Package
5+
artifacts:
6+
- path: build
7+
name: Xamarin.Forms.Mocks

build.cake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ var dirs = new[]
1616
Directory("./Xamarin.Forms.Mocks.Xaml/obj") + Directory(configuration),
1717
};
1818
string sln = "./Xamarin.Forms.Mocks.sln";
19-
string version = "3.0.0.2";
20-
string suffix = "";
19+
string version = "4.0.0.0";
20+
string suffix = "-pre1";
2121

2222
Task("Clean")
2323
.Does(() =>

0 commit comments

Comments
 (0)