-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathMudBlazor.StaticInput.csproj
More file actions
56 lines (49 loc) · 2.53 KB
/
MudBlazor.StaticInput.csproj
File metadata and controls
56 lines (49 loc) · 2.53 KB
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
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<Company>Ophois</Company>
<Authors>0phois</Authors>
<Description>MudBlazor extension components for Static Server-Side Rendered pages. Focuses on input components for forms.</Description>
<Copyright>Copyright 2024 Ophois</Copyright>
<PackageProjectUrl>https://github.com/0phois/MudBlazor.StaticInput</PackageProjectUrl>
<PackageIcon>nuget.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/0phois/MudBlazor.StaticInput</RepositoryUrl>
<PackageTags>material-design; server-side-rendering; component; blazor; microsoft-identity-UI; mudblazor; SSR; blazor-component-library</PackageTags>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageId>Extensions.$(AssemblyName)</PackageId>
<Title>Mudblazor.StaticInput</Title>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.3.9" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0' ">
<PackageReference Include="MudBlazor" Version="9.*" />
<PackageReference Include="Microsoft.AspNetCore.Components" Version="8.0.*" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.*" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net9.0' ">
<PackageReference Include="MudBlazor" Version="9.4.*" />
<PackageReference Include="Microsoft.AspNetCore.Components" Version="9.0.*" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="9.0.*" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net10.0' ">
<PackageReference Include="MudBlazor" Version="9.4.*" />
<PackageReference Include="Microsoft.AspNetCore.Components" Version="10.0.*" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="10.0.*" />
</ItemGroup>
<ItemGroup>
<None Include="..\content\nuget.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>