Moved it to .Net 10
This commit is contained in:
parent
4a30fa07a2
commit
5a6ef3583a
|
|
@ -32,8 +32,10 @@
|
||||||
</style>
|
</style>
|
||||||
@* <HeadOutlet @rendermode="@(new InteractiveServerRenderMode(false))" /> *@
|
@* <HeadOutlet @rendermode="@(new InteractiveServerRenderMode(false))" /> *@
|
||||||
<HeadOutlet @rendermode="InteractiveServer" />
|
<HeadOutlet @rendermode="InteractiveServer" />
|
||||||
<link rel="stylesheet" href="https://blazor.cdn.telerik.com/blazor/6.2.0/kendo-theme-bootstrap/swatches/bootstrap-urban.css" />
|
<link href="https://blazor.cdn.telerik.com/blazor/13.0.0/kendo-theme-bootstrap/swatches/bootstrap-urban.css" rel="stylesheet" type="text/css" />
|
||||||
<script src="https://blazor.cdn.telerik.com/blazor/6.2.0/telerik-blazor.min.js" defer></script>
|
|
||||||
|
<script src="https://blazor.cdn.telerik.com/blazor/13.0.0/telerik-blazor.min.js" defer></script>
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|
|
||||||
|
|
@ -494,7 +494,7 @@ else if (ShowWizard)
|
||||||
else if (check)
|
else if (check)
|
||||||
{
|
{
|
||||||
<h4>I'll be sending in a check</h4>
|
<h4>I'll be sending in a check</h4>
|
||||||
<p>I'll be sending in a check by the invoice's due date (6/13/2025).</p>
|
<p>I'll be sending in a check by the invoice's due date (4/24/2026).</p>
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
<div class="col-12">
|
<div class="col-12">
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<configuration>
|
||||||
|
<packageSources>
|
||||||
|
<add key="Telerik Blazor 13.0.0" value="C:\Program Files (x86)\Progress\Telerik UI for Blazor 13.0.0" />
|
||||||
|
</packageSources>
|
||||||
|
</configuration>
|
||||||
|
|
@ -1,19 +1,17 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net8.0</TargetFramework>
|
<TargetFramework>net10.0</TargetFramework>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<Target Name="CustomActionsAfterPublish" AfterTargets="AfterPublish">
|
<Target Name="CustomActionsAfterPublish" AfterTargets="AfterPublish">
|
||||||
<Exec Command="c:\misc\WaitForFolder $(PublishUrl) /nobeep" />
|
<Exec Command="c:\misc\WaitForFolder $(PublishUrl) /nobeep" />
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="kmCommonLibsCore" Version="2.0.0.129" />
|
<PackageReference Include="kmCommonLibsCore" Version="2.0.0.199" />
|
||||||
<PackageReference Include="Telerik.SvgIcons" Version="4.2.0" />
|
<PackageReference Include="Telerik.SvgIcons" Version="4.8.0" />
|
||||||
<PackageReference Include="Telerik.UI.for.Blazor" Version="8.1.1" />
|
<PackageReference Include="Telerik.UI.for.Blazor">
|
||||||
|
<Version>13.0.0</Version>
|
||||||
|
</PackageReference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
Loading…
Reference in New Issue