You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
824 B
26 lines
824 B
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<RootNamespace>TP_Blazor</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(RunConfiguration)' == 'http' " />
|
|
<ItemGroup>
|
|
<None Remove="Blazorise.Icons.FontAwesome" />
|
|
<None Remove="Models\" />
|
|
<None Remove="Blazorise.DataGrid" />
|
|
<None Remove="Blazorise.Bootstrap" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Blazorise.Icons.FontAwesome" Version="1.1.5" />
|
|
<PackageReference Include="Blazorise.DataGrid" Version="1.1.5" />
|
|
<PackageReference Include="Blazorise.Bootstrap" Version="1.1.5" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Folder Include="Models\" />
|
|
</ItemGroup>
|
|
</Project>
|