Skip to content

Commit

Permalink
Updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianRappl committed Feb 15, 2024
1 parent fbb7169 commit c73eb41
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ As an example, the following is a valid *csproj* file for a micro frontend:

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Version>0.4.0</Version>
<Version>1.2.3</Version>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<AppShell>My.Emulator/0.1.0</AppShell>
Expand Down
2 changes: 1 addition & 1 deletion src/Piral.Blazor.Cli/CreateEmulatorOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ private void CreateNuGetPackage(string csproj, string buildDir, string outDir)
var projectVersion = project.GetVersion() ?? "1.0.0";
var projectAuthors = project.GetAuthor() ?? "Piral";
var license = project.GetLicense() ?? "MIT";
var sdkVersion = project.GetSdkVersion() ?? "0.4.0";
var sdkVersion = project.GetSdkVersion() ?? "0.4.1";
var name = Name ?? $"{projectName}.Emulator";
var description = $"The emulator for the {projectName} application.";
var fn = Path.Combine(outDir, $"{name}.nupkg");
Expand Down
2 changes: 1 addition & 1 deletion src/Piral.Blazor.Cli/Piral.Blazor.Cli.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<VersionPrefix>0.4.0</VersionPrefix>
<VersionPrefix>0.4.1</VersionPrefix>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackAsTool>true</PackAsTool>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Nullable>enable</Nullable>
<VersionPrefix>0.4.0</VersionPrefix>
<VersionPrefix>0.4.1</VersionPrefix>
<IsPackable>true</IsPackable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Florian Rappl</Authors>
Expand Down
2 changes: 1 addition & 1 deletion src/Piral.Blazor.Sdk/Piral.Blazor.Sdk.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<VersionPrefix>0.4.0</VersionPrefix>
<VersionPrefix>0.4.1</VersionPrefix>
<IsPackable>true</IsPackable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Florian Rappl</Authors>
Expand Down
2 changes: 1 addition & 1 deletion src/Piral.Blazor.Sdk/Sdk/Sdk.targets
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Piral.Blazor.Shared" Version="0.4.0" PrivateAssets="all" />
<PackageReference Include="Piral.Blazor.Shared" Version="0.4.1" PrivateAssets="all" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Piral.Blazor.Shared/Piral.Blazor.Shared.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<VersionPrefix>0.4.0</VersionPrefix>
<VersionPrefix>0.4.1</VersionPrefix>
<IsPackable>true</IsPackable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Florian Rappl</Authors>
Expand Down
2 changes: 1 addition & 1 deletion src/Piral.Blazor.Shared/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
This is a shared library that will be automatically installed and used with `Piral.Blazor.Orchestrator` or in a micro frontend when you leverage the `Piral.Blazor.Sdk` SDK like this:

```xml
<Project Sdk="Piral.Blazor.Sdk/0.4.0">
<Project Sdk="Piral.Blazor.Sdk/0.4.1">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
Expand Down

0 comments on commit c73eb41

Please sign in to comment.