Skip to content

Commit c9ce44c

Browse files
build: upgrade to v1.1.2
1 parent 2cb34cb commit c9ce44c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/nArchGen/Application/Features/Create/Commands/New/CreateNewProjectCommand.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ [EnumeratorCancellation] CancellationToken cancellationToken
6666
private async Task downloadStarterProject(string projectName)
6767
{
6868
// Download zip on url
69-
string releaseUrl = "https://github.com/kodlamaio-projects/nArchitecture/archive/refs/tags/v1.1.1.zip";
69+
string releaseUrl = "https://github.com/kodlamaio-projects/nArchitecture/archive/refs/tags/v1.1.2.zip";
7070
using HttpClient client = new();
7171
using HttpResponseMessage response = await client.GetAsync(releaseUrl);
7272
response.EnsureSuccessStatusCode();
@@ -78,7 +78,7 @@ private async Task downloadStarterProject(string projectName)
7878
ZipFile.ExtractToDirectory(zipPath, Environment.CurrentDirectory);
7979
File.Delete(zipPath);
8080
Directory.Move(
81-
sourceDirName: $"{Environment.CurrentDirectory}/nArchitecture-1.1.1",
81+
sourceDirName: $"{Environment.CurrentDirectory}/nArchitecture-1.1.2",
8282
$"{Environment.CurrentDirectory}/{projectName}"
8383
);
8484
}

src/nArchGen/ConsoleUI/ConsoleUI.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<PackageIcon>n-architecture-logo.png</PackageIcon>
1818
<RepositoryUrl>https://github.com/kodlamaio-projects/nArchitecture.Gen</RepositoryUrl>
1919
<PackageTags>nArchitecture, nArchGen, cli, framework, tool, code generation</PackageTags>
20-
<Version>1.1.1</Version>
20+
<Version>1.1.2</Version>
2121
<PackageLicenseFile>LICENSE</PackageLicenseFile>
2222
<PackageReadmeFile>README.md</PackageReadmeFile>
2323
</PropertyGroup>

0 commit comments

Comments
 (0)