This repository was archived by the owner on Oct 31, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ pr: none
1313pool :
1414 vmImage : ubuntu-18.04
1515variables :
16- Version.MajorMinor : 1.1
16+ Version.MajorMinor : 1.2
1717 Version.Revision : $[counter(variables['Version.MajorMinor'], 0)]
1818steps :
1919 - bash : " sudo apt install nuget && mkdir ./testrunner && sudo chmod -R 777 ./testrunner && ls"
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 11using LocalStack . Client ;
22using System ;
3+ using System . Diagnostics ;
4+ using System . Threading ;
35using LocalStack . AwsLocal . ProcessCore ;
46using 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 ( ) ;
You can’t perform that action at this time.
0 commit comments