Skip to content
This repository was archived by the owner on Oct 31, 2025. It is now read-only.

Commit b036068

Browse files
committed
upgrade version to 1.2.0
1 parent 1583d66 commit b036068

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

build/azure-pipelines.artifact.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ pr: none
1313
pool:
1414
vmImage: ubuntu-18.04
1515
variables:
16-
Version.MajorMinor: 1.1
16+
Version.MajorMinor: 1.2
1717
Version.Revision: $[counter(variables['Version.MajorMinor'], 0)]
1818
steps:
1919
- bash: "sudo apt install nuget && mkdir ./testrunner && sudo chmod -R 777 ./testrunner && ls"

src/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
<Owners>LocalStack.NET</Owners>
66
<PackageProjectUrl>https://github.com/localstack-dotnet/localstack-awscli-local</PackageProjectUrl>
77
<PackageIcon>localstack-dotnet-square.png</PackageIcon>
8-
<Version>1.1.0</Version>
8+
<Version>1.2.0</Version>
99
</PropertyGroup>
1010
</Project>

src/LocalStack.AwsLocal/Program.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
using LocalStack.Client;
22
using System;
3+
using System.Diagnostics;
4+
using System.Threading;
35
using LocalStack.AwsLocal.ProcessCore;
46
using LocalStack.AwsLocal.ProcessCore.IO;
57

@@ -11,6 +13,13 @@ internal static class Program
1113

1214
private static void Main(string[] args)
1315
{
16+
//Console.WriteLine("Waiting for debugger to attach");
17+
//while (!Debugger.IsAttached)
18+
//{
19+
// Thread.Sleep(100);
20+
//}
21+
//Console.WriteLine("Debugger attached");
22+
1423
var processRunner = new ProcessRunner();
1524
var config = new Config(LocalStackHost);
1625
var fileSystem = new FileSystem();

0 commit comments

Comments
 (0)