Skip to content

Commit

Permalink
auto-release fixed + bump
Browse files Browse the repository at this point in the history
  • Loading branch information
nor0x committed Oct 3, 2024
1 parent 64944d6 commit e1d3735
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 deletions.
1 change: 1 addition & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
run: |
$version = [System.Version]::Parse((Get-Content Maui.ColorPicker/Maui.ColorPicker.csproj | Select-String -Pattern "<Version>(.*)</Version>").Matches.Groups[1].Value)
$env:CURRENT_VERSION = $version.ToString()
echo "::set-output name=CURRENT_VERSION::$env:CURRENT_VERSION"
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
Expand Down
23 changes: 7 additions & 16 deletions Maui.ColorPicker.Demo/Maui.ColorPicker.Demo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -40,32 +40,23 @@

<ItemGroup>
<!-- App Icon -->
<MauiIcon Include="Resources\AppIcon\appicon.svg"
ForegroundFile="Resources\AppIcon\appiconfg.svg"
Color="#512BD4" />
<MauiIcon Include="Resources\AppIcon\appicon.svg" ForegroundFile="Resources\AppIcon\appiconfg.svg" Color="#512BD4" />

<!-- Splash Screen -->
<MauiSplashScreen Include="Resources\Splash\splash.svg"
Color="#512BD4"
BaseSize="128,128" />
<MauiSplashScreen Include="Resources\Splash\splash.svg" Color="#512BD4" BaseSize="128,128" />

<!-- Images -->
<MauiImage Include="Resources\Images\*" />
<MauiImage Update="Resources\Images\dotnet_bot.svg"
BaseSize="168,208" />
<MauiImage Update="Resources\Images\dotnet_bot.svg" BaseSize="168,208" />

<!-- Custom Fonts -->
<MauiFont Include="Resources\Fonts\*" />

<!-- Raw Assets (also remove the "Resources\Raw" prefix) -->
<MauiAsset Include="Resources\Raw\**"
LogicalName="%(RecursiveDir)%(Filename)%(Extension)" />
<PackageReference Include="SkiaSharp.Views.Maui.Controls"
Version="2.88.8" />
<PackageReference Include="Microsoft.Maui.Controls"
Version="$(MauiVersion)" />
<PackageReference Include="Microsoft.Maui.Controls.Compatibility"
Version="$(MauiVersion)" />
<MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" />
<PackageReference Include="SkiaSharp.Views.Maui.Controls" Version="2.88.8" />
<PackageReference Include="Microsoft.Maui.Controls" Version="8.0.91" />
<PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="8.0.91" />
</ItemGroup>

<ItemGroup>
Expand Down
14 changes: 11 additions & 3 deletions Maui.ColorPicker/Maui.ColorPicker.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
<TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<AssemblyVersion>2.0.2</AssemblyVersion>
<AssemblyFileVersion>2.0.2</AssemblyFileVersion>
<Version>2.0.2</Version>
<AssemblyVersion>2.0.3</AssemblyVersion>
<AssemblyFileVersion>2.0.3</AssemblyFileVersion>
<Version>2.0.3</Version>
<Title>nor0x.Maui.ColorPicker</Title>
<PackageId>nor0x.Maui.ColorPicker</PackageId>
<PackageReleaseNotes>https://github.com/nor0x/Maui.ColorPicker/releases</PackageReleaseNotes>
Expand All @@ -43,4 +43,12 @@
<None Include="..\Art\icon.png" Pack="true" PackagePath="\" />
</ItemGroup>

<ItemGroup>
<PackageReference Update="Microsoft.Maui.Controls" Version="8.0.91" />
</ItemGroup>

<ItemGroup>
<PackageReference Update="Microsoft.Maui.Controls.Compatibility" Version="8.0.91" />
</ItemGroup>

</Project>

0 comments on commit e1d3735

Please sign in to comment.