Skip to content

Commit

Permalink
Merge pull request #14 from BruderJohn/net6
Browse files Browse the repository at this point in the history
Added Compatibility for net6.0
  • Loading branch information
tossnet authored Oct 12, 2023
2 parents 7bceabe + 845ce9b commit bfd0df6
Showing 1 changed file with 32 additions and 32 deletions.
64 changes: 32 additions & 32 deletions BlazorCalendar/BlazorCalendar.csproj
Original file line number Diff line number Diff line change
@@ -1,41 +1,41 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Description>annual calendar for Blazor application</Description>
<Copyright>Copyright 2023</Copyright>
<PackageProjectUrl>https://github.com/tossnet/Blazor-Calendar</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<RepositoryUrl>https://github.com/tossnet/Blazor-Calendar</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>blazor, calendar, schedule, component</PackageTags>
<PackageReleaseNotes>https://github.com/tossnet/Blazor-Calendar#release-notes</PackageReleaseNotes>
<Version>2.6.5</Version>
<Authors>Christophe Peugnet</Authors>
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup>
<TargetFrameworks>net6.0; net7.0</TargetFrameworks>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Description>annual calendar for Blazor application</Description>
<Copyright>Copyright 2023</Copyright>
<PackageProjectUrl>https://github.com/tossnet/Blazor-Calendar</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<RepositoryUrl>https://github.com/tossnet/Blazor-Calendar</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>blazor, calendar, schedule, component</PackageTags>
<PackageReleaseNotes>https://github.com/tossnet/Blazor-Calendar#release-notes</PackageReleaseNotes>
<Version>2.6.5</Version>
<Authors>Christophe Peugnet</Authors>
<DebugType>embedded</DebugType>
</PropertyGroup>

<ItemGroup>
<None Include="wwwroot\BlazorCalendar.css" />
</ItemGroup>
<ItemGroup>
<None Include="wwwroot\BlazorCalendar.css" />
</ItemGroup>

<ItemGroup>
<SupportedPlatform Include="browser" />
</ItemGroup>

<ItemGroup>
<SupportedPlatform Include="browser" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="6.0.10" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="7.0.8" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'">
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="7.0.8" />
</ItemGroup>

<ItemGroup>
<None Update="icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<None Include="icon.png" Pack="true" PackagePath="\" />
</ItemGroup>

</Project>

0 comments on commit bfd0df6

Please sign in to comment.