Skip to content

Commit

Permalink
Updated nugets
Browse files Browse the repository at this point in the history
Fixed #48
  • Loading branch information
AndreasReitberger committed Jun 14, 2024
1 parent 875f372 commit 5723d2d
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 17 deletions.
Binary file added art/ar_128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
36 changes: 36 additions & 0 deletions common.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@

<Project>
<PropertyGroup>
<Version>1.0.8</Version>
<PackageIcon>ar_128.png</PackageIcon>
<NeutralLanguage>en</NeutralLanguage>
<PackageProjectUrl>https://github.com/AndreasReitberger/MauiSettings</PackageProjectUrl>
<RepositoryUrl>https://github.com/AndreasReitberger/MauiSettings</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>Check GitHub releases for changelog.</PackageReleaseNotes>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Authors>Andreas Reitberger</Authors>
<Company>Andreas Reitberger</Company>
<Copyright>Andreas Reitberger</Copyright>
<LangVersion>12</LangVersion>
<PublishReadyToRun>false</PublishReadyToRun>
<Nullable>enable</Nullable>

<!--Source-Linking-->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\art\ar_128.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
</ItemGroup>
</Project>
4 changes: 2 additions & 2 deletions src/MauiSettings.Example/MauiSettings.Example.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Maui.Controls" Version="8.0.20" />
<PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="8.0.20" />
<PackageReference Include="Microsoft.Maui.Controls" Version="8.0.60" />
<PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="8.0.60" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" />
</ItemGroup>

Expand Down
7 changes: 4 additions & 3 deletions src/MauiSettings.sln
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,14 @@ VisualStudioVersion = 17.3.32519.111
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MauiSettings", "MauiSettings\MauiSettings.csproj", "{9A79D717-2C07-48A4-A78D-BD252E9BCA25}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Projektmappenelemente", "Projektmappenelemente", "{26232A22-4BBC-4509-99A5-987CE67F1882}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MauiSettings.Example", "MauiSettings.Example\MauiSettings.Example.csproj", "{343E7298-7A56-4737-A1A2-312835BCB98C}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{3CBCD659-10AB-4B69-B12E-48998DEE148E}"
ProjectSection(SolutionItems) = preProject
..\common.props = ..\common.props
nuget.config = nuget.config
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MauiSettings.Example", "MauiSettings.Example\MauiSettings.Example.csproj", "{343E7298-7A56-4737-A1A2-312835BCB98C}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down
16 changes: 4 additions & 12 deletions src/MauiSettings/MauiSettings.csproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="..\..\common.props" />
<PropertyGroup>
<TargetFrameworks>net8.0;net8.0-android;net8.0-ios;net8.0-maccatalyst</TargetFrameworks>
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net8.0-windows10.0.19041.0</TargetFrameworks>
Expand All @@ -19,18 +19,10 @@
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion>

<RootNamespace>AndreasReitberger.Maui</RootNamespace>
<Copyright>Andreas Reitberger</Copyright>
<PackageProjectUrl>https://github.com/AndreasReitberger/MauiSettings</PackageProjectUrl>
<Description>A .NET MAUI library to store settings locally and in the cloud</Description>
<Authors>Andreas Reitberger</Authors>
<RepositoryUrl>https://github.com/AndreasReitberger/MauiSettings</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags> MAUI, dotnet, NET, Settings, Preference</PackageTags>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>Settings.Maui</Title>
<Version>1.0.8</Version>
<Product>Settings.Maui</Product>
<PackageId>SettingsMaui </PackageId>
</PropertyGroup>
Expand All @@ -41,10 +33,10 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Maui.Controls" Version="8.0.20" />
<PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="8.0.20" />
<PackageReference Include="Microsoft.Maui.Controls" Version="8.0.60" />
<PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="8.0.60" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="SharedNetCoreLibrary" Version="1.1.7" />
<PackageReference Include="SharedNetCoreLibrary" Version="1.1.8" />
</ItemGroup>

</Project>

0 comments on commit 5723d2d

Please sign in to comment.