-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathBlazorFileUpload.csproj
113 lines (90 loc) · 4.25 KB
/
BlazorFileUpload.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<PackageReadmeFile>README.md</PackageReadmeFile>
<TargetFramework>net8.0</TargetFramework>
<Nullable>disable</Nullable>
<PackageId>DataJuggler.Blazor.FileUpload</PackageId>
<Version>8.0.2</Version>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Authors>DataJuggler</Authors>
<Company>DataJuggler</Company>
<Product>DataJuggler.Blazor.FileUpload</Product>
<Description>BlazorFileUpload makes it easy to upload files in Blazor projects. The 8.0 version is only for .NET8.
Use 7.x version for .NET7, 6.x for .NET6. All new features / bug fixes are for .NET8 version onward.
BlazorFileUpload now supports multiple file uploads!</Description>
<PackageIcon>BlazorFileUploadIcon.png</PackageIcon>
<RepositoryUrl>https://github.com/DataJuggler/BlazorFileUpload</RepositoryUrl>
<RepositoryType>Git Git Hub</RepositoryType>
<PackageTags>C#;Blazor;File Upload;</PackageTags>
<PackageReleaseNotes>
8.0.0
11.17.2023: This project was updated to .NET8.
7.2.0
8.13.2023: DataJuggler.Blazor.Components and DataJuggler.UltimateHelper were updated.
7.1.2
7.22.2023: DataJuggler.Blazor.Components was updated.
version 7.1.0
7.2.2023: DataJuggler.BlazorFileUpload now supports multiple file uploads.
6.21.2023: I updated 4 Nuget packages:
Microsoft.AspCore.Components, Microsoft.AspCore.Components.Web, DataJuggler.Blazor.Components
and DataJuggler.UltimateHelper.
5.8.2023: Updated Microsoft.AspCore.Components and Microsoft.AspCore.Components.Web.
Also made this project be able to implement IBlazorComponent, so now it can register
with IBlazorComponentParents. This allos the parent to send a message 'OnReset", to force
a reset.
4.5.2023: Upgraded Nuget package DataJuggler.UltimateHelper and
Microsoft.AspCore.Components and Microsoft.AspCore.Components.Web.
3.6.2023: Added a Read Me with links to Blazor Excelerate examples.
v7.0.2
3.6.2023: Updated some Nuget packages
v7.0.1
12.3.2022: Released 7.0.0 version.
10.20.2022:
v7.0.0.-rc1: This version is listed as pre-release until .NET7 is out of preview.
This version has been upaded for .NET7.
7.6.2022
Version 6.0.3: I set the default MaxFileUpload to 40 meg by default.
If you don't set any value, the file upload is aborted, and yesterday I had to
add the project reference to figure this out. I figure this will make it easier.
I may add an Aborted Reason when I get some time.</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/DataJuggler/BlazorFileUpload</PackageProjectUrl>
<ApplicationIcon>wwwroot\BlazorFileUploadIcon.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;IDE0090;IDE0063;BL0007;</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<NoWarn>1701;1702;IDE0090;IDE0063;BL0007;</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Sample\**" />
<Content Remove="Sample\**" />
<EmbeddedResource Remove="Sample\**" />
<None Remove="Sample\**" />
</ItemGroup>
<ItemGroup>
<SupportedPlatform Include="browser" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DataJuggler.Blazor.Components" Version="8.10.3" />
<PackageReference Include="DataJuggler.UltimateHelper" Version="8.1.3" />
<PackageReference Include="Microsoft.AspNetCore.Components" Version="8.0.8" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.8" />
<PackageReference Include="System.Drawing.Common" Version="8.0.8" />
</ItemGroup>
<ItemGroup>
<None Update="BlazorFileUploadIcon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="README.md">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<None Include="docs\README.md" Pack="true" PackagePath="\">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>