Skip to content

Commit

Permalink
upgrade version to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Blind-Striker committed May 6, 2020
1 parent 1583d66 commit b036068
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/azure-pipelines.artifact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ pr: none
pool:
vmImage: ubuntu-18.04
variables:
Version.MajorMinor: 1.1
Version.MajorMinor: 1.2
Version.Revision: $[counter(variables['Version.MajorMinor'], 0)]
steps:
- bash: "sudo apt install nuget && mkdir ./testrunner && sudo chmod -R 777 ./testrunner && ls"
Expand Down
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
<Owners>LocalStack.NET</Owners>
<PackageProjectUrl>https://github.com/localstack-dotnet/localstack-awscli-local</PackageProjectUrl>
<PackageIcon>localstack-dotnet-square.png</PackageIcon>
<Version>1.1.0</Version>
<Version>1.2.0</Version>
</PropertyGroup>
</Project>
9 changes: 9 additions & 0 deletions src/LocalStack.AwsLocal/Program.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
using LocalStack.Client;
using System;
using System.Diagnostics;
using System.Threading;
using LocalStack.AwsLocal.ProcessCore;
using LocalStack.AwsLocal.ProcessCore.IO;

Expand All @@ -11,6 +13,13 @@ internal static class Program

private static void Main(string[] args)
{
//Console.WriteLine("Waiting for debugger to attach");
//while (!Debugger.IsAttached)
//{
// Thread.Sleep(100);
//}
//Console.WriteLine("Debugger attached");

var processRunner = new ProcessRunner();
var config = new Config(LocalStackHost);
var fileSystem = new FileSystem();
Expand Down

0 comments on commit b036068

Please sign in to comment.