Skip to content

Commit 1a00c7f

Browse files
Update build
1 parent 50c0459 commit 1a00c7f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Build/Program.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
var configuration = GetProperty("configuration", "Release");
2323
var apiKey = GetProperty("apiKey", "");
2424
var integrationTests = bool.Parse(GetProperty("integrationTests", CI.ToString()));
25-
var defaultVersion = NuGetVersion.Parse(GetProperty("version", "1.0.0-dev", CI));
25+
var defaultVersion = NuGetVersion.Parse(GetProperty("version", "1.1.0-dev", CI));
2626
var outputDir = Path.Combine(currentDir, "CSharpInteractive", "bin", configuration);
2727
var templateOutputDir = Path.Combine(currentDir, "CSharpInteractive.Templates", "bin", configuration);
2828
var dockerLinuxTests = HasLinuxDocker();
@@ -33,10 +33,13 @@
3333

3434
var packageVersion = new[]
3535
{
36+
defaultVersion,
3637
GetNextNuGetVersion(new NuGetRestoreSettings(toolPackageId).WithPackageType(NuGetPackageType.Tool), defaultVersion),
3738
GetNextNuGetVersion(new NuGetRestoreSettings(packageId), defaultVersion)
3839
}.Max()!;
3940

41+
Info(packageVersion.ToString());
42+
4043
var packages = new[]
4144
{
4245
new PackageInfo(

0 commit comments

Comments
 (0)