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>
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@
|
||||||
<h1>Thank you for your interest!</h1>
|
<h1>Thank you for your interest!</h1>
|
||||||
<p>Unfortunately, the enrollment period for our Summer Growth Campaign has drawn to a close.</p>
|
<p>Unfortunately, the enrollment period for our Summer Growth Campaign has drawn to a close.</p>
|
||||||
<p>Stay tuned for more great campaigns in the future!</p>
|
<p>Stay tuned for more great campaigns in the future!</p>
|
||||||
<p><i class="fa-solid fa-heart"></i></p>
|
<p><i class="fa-solid fa-heart"></i></p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-12 text-center">
|
<div class="col-12 text-center">
|
||||||
<img class="img-fluid" src="/img/34d1685e-d655-421b-aef8-e077140534f9.png" alt="Thank You!" />
|
<img class="img-fluid" src="/img/34d1685e-d655-421b-aef8-e077140534f9.png" alt="Thank You!" />
|
||||||
|
|
@ -257,7 +257,7 @@ else if (ShowWizard)
|
||||||
@* *@
|
@* *@
|
||||||
@* Step 3 - For postcards, choose a verse and a signature *@
|
@* Step 3 - For postcards, choose a verse and a signature *@
|
||||||
@* *@
|
@* *@
|
||||||
<WizardStep Label="Customization" OnChange="@OnMessagingStepChange" Valid="@isMessagingValid">
|
<WizardStep Label="Customization" OnChange="@OnMessagingStepChange" Valid="@isMessagingValid">
|
||||||
<Content>
|
<Content>
|
||||||
<TelerikForm Model="@messagingOptions" @ref="@messagingForm">
|
<TelerikForm Model="@messagingOptions" @ref="@messagingForm">
|
||||||
<FormItems>
|
<FormItems>
|
||||||
|
|
@ -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