-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDataJuggler.Blazor.Components.csproj
100 lines (85 loc) · 18.2 KB
/
DataJuggler.Blazor.Components.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
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<RazorLangVersion>3.0</RazorLangVersion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>DataJuggler</Authors>
<Description>
This project consists of a TextBoxComponent, Multiline TextBox, CheckBox, ComboBox,
CheckedListComboBox, CheckedListBox, Grid, Label, Calendar Component, Time Component
and more.
The CSS file DataJuggler.Blazor.Components.css contains many useful classes to help style
and position objects.
This version is for .Net 9.0.</Description>
<Copyright>2025 - Data Juggler - Use For Anything You Want, No Warranty.</Copyright>
<PackageLicenseFile>License.txt</PackageLicenseFile>
<PackageProjectUrl>https://github.com/DataJuggler/DataJuggler.Blazor.Components</PackageProjectUrl>
<PackageIcon>Merge Boxes Small.png</PackageIcon>
<PackageIconUrl />
<RepositoryUrl>https://github.com/DataJuggler/DataJuggler.Blazor.Components.git</RepositoryUrl>
<RepositoryType>Git - Git Hub</RepositoryType>
<PackageTags>Blazor,C#,UI,Components,ProgressBar,Animation,TextBoxComponent</PackageTags>
<PackageReleaseNotes>See Read Me.</PackageReleaseNotes>
<Version>9.9.43</Version>
<AssemblyVersion>7.5.5</AssemblyVersion>
<FileVersion>7.5.5</FileVersion>
<Nullable>disable</Nullable>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net5.0|AnyCPU'">
<NoWarn>1701;1702;NU5118;</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net5.0|AnyCPU'">
<NoWarn>1701;1702;NU5118;</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net6.0|AnyCPU'">
<NoWarn>1701;1702;NU5118;</NoWarn>
<WarningLevel>5</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net6.0|AnyCPU'">
<NoWarn>1701;1702;NU5118;</NoWarn>
<WarningLevel>5</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;IDE0059;IDE0017;IDE0090;BL0007;IDE0028;IDE0300;</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<NoWarn>1701;1702;IDE0059;IDE0017;IDE0090;BL0007;IDE0028;IDE0300;</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Remove="bin\**" />
<Compile Remove="Data\**" />
<Compile Remove="Samples\**" />
<Content Remove="bin\**" />
<Content Remove="Data\**" />
<Content Remove="Samples\**" />
<EmbeddedResource Remove="bin\**" />
<EmbeddedResource Remove="Data\**" />
<EmbeddedResource Remove="Samples\**" />
<None Remove="bin\**" />
<None Remove="Data\**" />
<None Remove="Samples\**" />
<None Include="License\License.txt">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\..\..\Graphics\Merge Boxes Small.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="DataJuggler.BlazorStyled" Version="9.0.0" />
<PackageReference Include="DataJuggler.Excelerate" Version="9.0.1" />
<PackageReference Include="DataJuggler.UltimateHelper" Version="9.0.16" />
<PackageReference Include="Microsoft.AspNetCore.Components" Version="9.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="9.0.1" />
</ItemGroup>
<ItemGroup>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>