Skip to content

Commit 9dc0493

Browse files
net 10.0
1 parent 7711a50 commit 9dc0493

3 files changed

Lines changed: 14 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [1.2.0] - 2025-11-11
8+
- Added support to net10.0
9+
710
## [1.1.0] - 2025-08-25
811
- Added `AllowMultipleFiles` Flag
912
- **BREAKING** `OnBase64FileReceived` and `OnBaseBinaryFileReceived` renamed to `OnBase64FilesReceived` and `OnBaseBinaryFilesReceived`
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="9.0.8" />
11-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="9.0.8" PrivateAssets="all" />
10+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.0" />
11+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="10.0.0" PrivateAssets="all" />
1212
</ItemGroup>
1313

14-
<ItemGroup>
15-
<ProjectReference Include="../src/SuperSimpleBlazorDropzone/SuperSimpleBlazorDropzone.csproj" />
14+
<ItemGroup>
15+
<ProjectReference Include="../src/SuperSimpleBlazorDropzone/SuperSimpleBlazorDropzone.csproj" />
1616
</ItemGroup>
1717

1818
</Project>

src/SuperSimpleBlazorDropzone/SuperSimpleBlazorDropzone.csproj

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Title>Super Simple Blazor Dropzone</Title>
55
<PackageId>SuperSimpleBlazorDropzone</PackageId>
6-
<PackageVersion>1.1.0</PackageVersion>
6+
<PackageVersion>1.2.0</PackageVersion>
77
<Authors>Nicola Piermattei</Authors>
88
<PackageTags>blazor;dropzone;simple;file;upload</PackageTags>
99
<PackageProjectUrl>https://github.com/NikPiermafrost/SuperSimpleBlazorDropzone</PackageProjectUrl>
@@ -16,7 +16,7 @@
1616
</PropertyGroup>
1717

1818
<PropertyGroup>
19-
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
19+
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
2020
<Nullable>enable</Nullable>
2121
<ImplicitUsings>enable</ImplicitUsings>
2222
</PropertyGroup>
@@ -34,6 +34,10 @@
3434
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="9.0.*" />
3535
</ItemGroup>
3636

37+
<ItemGroup Condition="'$(TargetFramework)' == 'net10.0'">
38+
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="10.0.*" />
39+
</ItemGroup>
40+
3741
<ItemGroup>
3842
<None Include="../../README.md" Pack="true" PackagePath="." />
3943
</ItemGroup>

0 commit comments

Comments
 (0)