|
1 | | -<Project Sdk="Microsoft.NET.Sdk.Razor"> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk.Razor"> |
2 | 2 |
|
3 | | - <PropertyGroup> |
4 | | - <TargetFramework>net9.0</TargetFramework> |
5 | | - <Nullable>enable</Nullable> |
6 | | - <ImplicitUsings>enable</ImplicitUsings> |
7 | | - <RootNamespace>Drogecode.Blazor.ExpireStorage</RootNamespace> |
8 | | - <Version>0.1.0</Version> |
9 | | - <Title>Drogecode.Blazor.ExpireStorage</Title> |
10 | | - <Authors>Taco Droogers</Authors> |
11 | | - <PackageProjectUrl>https://github.com/Drogecode/Drogecode.Blazor.ExpireStorage</PackageProjectUrl> |
12 | | - <RepositoryUrl>https://github.com/Drogecode/Drogecode.Blazor.ExpireStorage</RepositoryUrl> |
13 | | - <Description>Adds a wrapper on top of Blazored.LocalStorage and Blazored.SessionStorage to expire items from localstorage and sessionstorage after a specified time.</Description> |
14 | | - <PackageReadmeFile>README.md</PackageReadmeFile> |
15 | | - <PackageLicenseFile>LICENSE</PackageLicenseFile> |
16 | | - </PropertyGroup> |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFrameworks>net9.0;net10.0</TargetFrameworks> |
| 5 | + <Nullable>enable</Nullable> |
| 6 | + <ImplicitUsings>enable</ImplicitUsings> |
| 7 | + <RootNamespace>Drogecode.Blazor.ExpireStorage</RootNamespace> |
| 8 | + <Version>0.1.1</Version> |
| 9 | + <Title>Drogecode.Blazor.ExpireStorage</Title> |
| 10 | + <Authors>Taco Droogers</Authors> |
| 11 | + <PackageProjectUrl>https://github.com/Drogecode/Drogecode.Blazor.ExpireStorage</PackageProjectUrl> |
| 12 | + <RepositoryUrl>https://github.com/Drogecode/Drogecode.Blazor.ExpireStorage</RepositoryUrl> |
| 13 | + <Description>Adds a wrapper on top of Blazored.LocalStorage and Blazored.SessionStorage to expire items from localstorage and sessionstorage after a specified time.</Description> |
| 14 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 15 | + <PackageLicenseFile>LICENSE</PackageLicenseFile> |
| 16 | + </PropertyGroup> |
17 | 17 |
|
18 | | - <ItemGroup> |
19 | | - <SupportedPlatform Include="browser"/> |
20 | | - </ItemGroup> |
| 18 | + <ItemGroup> |
| 19 | + <SupportedPlatform Include="browser" /> |
| 20 | + </ItemGroup> |
21 | 21 |
|
22 | | - <ItemGroup> |
23 | | - <None Include="..\..\README.md" Pack="true" PackagePath="\"/> |
24 | | - <None Include="..\..\LICENSE" Pack="true" PackagePath="\"/> |
25 | | - <PackageReference Include="Blazored.LocalStorage" Version="4.5.0"/> |
26 | | - <PackageReference Include="Blazored.SessionStorage" Version="2.4.0"/> |
27 | | - <PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="9.0.10"/> |
28 | | - <PackageReference Include="Microsoft.TypeScript.MSBuild" Version="5.9.3"> |
29 | | - <PrivateAssets>all</PrivateAssets> |
30 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
31 | | - </PackageReference> |
32 | | - </ItemGroup> |
| 22 | + <ItemGroup> |
| 23 | + <None Include="..\..\README.md" Pack="true" PackagePath="\" /> |
| 24 | + <None Include="..\..\LICENSE" Pack="true" PackagePath="\" /> |
| 25 | + <PackageReference Include="Blazored.LocalStorage" Version="4.5.0" /> |
| 26 | + <PackageReference Include="Blazored.SessionStorage" Version="2.4.0" /> |
| 27 | + <PackageReference Include="Microsoft.TypeScript.MSBuild" Version="5.9.3"> |
| 28 | + <PrivateAssets>all</PrivateAssets> |
| 29 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 30 | + </PackageReference> |
| 31 | + </ItemGroup> |
| 32 | + <ItemGroup Condition=" '$(TargetFramework)' == 'net9.0' "> |
| 33 | + <PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="9.0.10" /> |
| 34 | + </ItemGroup> |
| 35 | + <ItemGroup Condition=" '$(TargetFramework)' == 'net10.0' "> |
| 36 | + <PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="10.0.0" /> |
| 37 | + </ItemGroup> |
33 | 38 |
|
34 | | - <ItemGroup> |
35 | | - <Content Update="tsconfig.json"> |
36 | | - <Pack>false</Pack> |
37 | | - <CopyToOutputDirectory>Never</CopyToOutputDirectory> |
38 | | - </Content> |
39 | | - </ItemGroup> |
| 39 | + <ItemGroup> |
| 40 | + <Content Update="tsconfig.json"> |
| 41 | + <Pack>false</Pack> |
| 42 | + <CopyToOutputDirectory>Never</CopyToOutputDirectory> |
| 43 | + </Content> |
| 44 | + </ItemGroup> |
40 | 45 |
|
41 | 46 | </Project> |
0 commit comments