This commit is contained in:
RDeck 2024-03-18 05:19:07 -04:00
parent c4c5ccd714
commit 4f9a8c466e
53 changed files with 8658 additions and 8493 deletions

View File

@ -0,0 +1,5 @@
{
"version": 1,
"isRoot": true,
"tools": {}
}

Binary file not shown.

Binary file not shown.

View File

@ -1,12 +1,6 @@
{
"ExpandedNodes": [
"",
"\\Components",
"\\Components\\Layout",
"\\Components\\Pages",
"\\obj",
"\\Properties",
"\\wwwroot"
""
],
"PreviewInSolutionExplorer": false
}

View File

@ -12,7 +12,7 @@
<HeadOutlet />
</head>
<body>
<body class="stretched is-expanded-menu">
<Routes />
<script src="/js/plugins.min.js"></script>
<script src="/js/functions.bundle.js"></script>

View File

@ -0,0 +1,34 @@
@*
This will contain the HEAD elements to use the CANVAS template
*@
<HeadContent>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta http-equiv="x-ua-compatible" content="IE=edge">
<meta name="author" content="KeyMailSpecials">
<meta name="description" content="Seamlessly connecting customers to their preferred service providers, resulting in streamlined experiences for today's fast-pased world!'" />
<!-- Font Imports -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<!-- Core Style -->
<link rel="stylesheet" href="/style.css">
<!-- Font Icons -->
<link rel="stylesheet" href="css/font-icons.css">
<!-- Plugins/Components CSS -->
<link rel="stylesheet" href="css/components/datepicker.css">
<!-- Niche Demos -->
<link rel="stylesheet" href="demos/movers/movers.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/custom.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Document Title
============================================= -->
<title>KeyMail Specials</title> @*Override in basepage if you want to, otherwise it will use this*@
</HeadContent>

View File

@ -0,0 +1,88 @@
<header id="header" class="dark header-size-sm" data-sticky-shrink="false">
<div class="container">
<div class="header-row">
<!-- Logo
============================================= -->
<div id="logo" class="ms-auto ms-md-0">
<a>
<img class="logo-default" srcset="/images/logos/kms24w.png" alt="KeyMotive Logo">
<img class="logo-dark" srcset="/images/logos/kms24w.png" alt="KeyMotive Logo">
</a>
</div><!-- #logo end -->
</div>
</div>
<div id="header-wrap">
<div class="container">
<div class="header-row justify-content-between flex-row-reverse flex-lg-row">
<div class="header-misc">
<!-- Header Buttons
============================================= -->
<div class="header-buttons d-none d-sm-inline-block">
<a href="contact" data-offset="-80" class="button button-rounded button-white button-light button-small m-0">Contact Us</a>
</div>
</div>
<div class="primary-menu-trigger">
<button class="cnvs-hamburger" type="button" title="Open Mobile Menu">
<span class="cnvs-hamburger-box"><span class="cnvs-hamburger-inner"></span></span>
</button>
</div>
<!-- Primary Navigation
============================================= -->
<nav class="primary-menu with-arrows navbar-expand">
<ul class="menu-container">
<li class="menu-item @actChoice[0]"><a class="menu-link" href="/"><div>Home</div></a></li>
<li class="menu-item @actChoice[1]"><a class="menu-link" href="/about"><div>About Us</div></a></li>
<li class="menu-item @actChoice[2]"><a class="menu-link" href="/privacy"><div>Privacy</div></a></li>
</ul>
</nav><!-- #primary-menu end -->
<form class="top-search-form" action="search.html" method="get">
<input type="text" name="q" class="form-control" value="" placeholder="Type &amp; Hit Enter.." autocomplete="off">
</form>
</div>
</div>
</div>
<div class="header-wrap-clone"></div>
</header><!-- #header end -->
@code {
[Parameter]
public enuChoice ActiveChoice { get; set; } = enuChoice.Home;
public enum enuChoice : byte
{
Home = 0,
AboutUs = 1,
Privacy = 2,
Nothing = 3
}
string[] actChoice = { "", "", "" };
protected override void OnInitialized()
{
switch (ActiveChoice)
{
case enuChoice.AboutUs:
actChoice[1] = "current";
break;
case enuChoice.Privacy:
actChoice[2] = "current";
break;
case enuChoice.Nothing:
//meh
break;
default:
actChoice[0] = "current";
break;
}
}
}

View File

@ -1,38 +1,8 @@
@page "/about"
@inject Services.GlobalService gloService
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta http-equiv="x-ua-compatible" content="IE=edge">
<!-- Font Imports -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<!-- Core Style -->
<link rel="stylesheet" href="style.css">
<!-- Font Icons -->
<link rel="stylesheet" href="css/font-icons.css">
<!-- Plugins/Components CSS -->
<link rel="stylesheet" href="css/components/datepicker.css">
<!-- Niche Demos -->
<link rel="stylesheet" href="demos/movers/movers.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/custom.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Document Title
============================================= -->
<title>About Us</title>
</head>
<body class="stretched is-expanded-menu">
<CanvasHomePage />
<PageTitle>About Us - @gloService.WebsiteName</PageTitle>
<!-- Document Wrapper
============================================= -->
@ -40,61 +10,7 @@
<!-- Header
============================================= -->
<header id="header" class="dark header-size-sm" data-sticky-shrink="false">
<div class="container">
<div class="header-row">
<!-- Logo
============================================= -->
<div id="logo" class="ms-auto ms-md-0">
<a>
<img class="logo-default" srcset="images/km_logo.png" alt="KeyMotive Logo">
<img class="logo-dark" srcset="images/km_logo.png" alt="KeyMotive Logo">
</a>
</div><!-- #logo end -->
</div>
</div>
<div id="header-wrap">
<div class="container">
<div class="header-row justify-content-between flex-row-reverse flex-lg-row">
<div class="header-misc">
<!-- Header Buttons
============================================= -->
<div class="header-buttons d-none d-sm-inline-block">
<a href="contact" data-offset="-80" class="button button-rounded button-white button-light button-small m-0">Contact Us</a>
</div>
</div>
<div class="primary-menu-trigger">
<button class="cnvs-hamburger" type="button" title="Open Mobile Menu">
<span class="cnvs-hamburger-box"><span class="cnvs-hamburger-inner"></span></span>
</button>
</div>
<!-- Primary Navigation
============================================= -->
<nav class="primary-menu with-arrows navbar-expand">
<ul class="menu-container">
<li class="menu-item"><a class="menu-link" href=""><div>Home</div></a></li>
<li class="menu-item current"><a class="menu-link" href="about"><div>About Us</div></a></li>
<li class="menu-item"><a class="menu-link" href="privacy"><div>Privacy</div></a></li>
</ul>
</nav><!-- #primary-menu end -->
<form class="top-search-form" action="search.html" method="get">
<input type="text" name="q" class="form-control" value="" placeholder="Type &amp; Hit Enter.." autocomplete="off">
</form>
</div>
</div>
</div>
<div class="header-wrap-clone"></div>
</header><!-- #header end -->
<Header1 ActiveChoice=Header1.enuChoice.AboutUs />
<!-- Content
============================================= -->
@ -272,7 +188,7 @@
<div class="row justify-content-between align-items-center">
<div class="col-md-6 text-black-50">
Copyrights &copy; 2024 All Rights Reserved by KeyMotive LLC.
Copyright &copy; 2010 - @gloService.YearInFooter All Rights Reserved by KeyMotive LLC.
</div>
</div>
@ -286,5 +202,3 @@
<!-- Go To Top
============================================= -->
<div id="gotoTop" class="uil uil-angle-up"></div>
</body>

View File

@ -1,42 +1,8 @@
@page "/contact"
@inject Services.GlobalService gloService
<!DOCTYPE html>
<html dir="ltr" lang="en-US">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta http-equiv="x-ua-compatible" content="IE=edge">
<meta name="author" content="SemiColonWeb">
<meta name="description" content="Create Packers, Movers &amp; Shipping Websites with Canvas Template. Get Canvas to build powerful websites easily with the Highly Customizable &amp; Best Selling Bootstrap Template, today.">
<!-- Font Imports -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<!-- Core Style -->
<link rel="stylesheet" href="style.css">
<!-- Font Icons -->
<link rel="stylesheet" href="css/font-icons.css">
<!-- Plugins/Components CSS -->
<link rel="stylesheet" href="css/components/datepicker.css">
<!-- Niche Demos -->
<link rel="stylesheet" href="demos/movers/movers.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/custom.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Document Title
============================================= -->
<title>Contact Us</title>
</head>
<body class="stretched is-expanded-menu">
<CanvasHomePage />
<PageTitle>Contact Us - @gloService.WebsiteName</PageTitle>
<!-- Document Wrapper
============================================= -->
@ -44,59 +10,8 @@
<!-- Header
============================================= -->
<header id="header" class="dark header-size-sm" data-sticky-shrink="false">
<div class="container">
<div class="header-row">
<Header1 ActiveChoice=Header1.enuChoice.Nothing/>
<!-- Logo
============================================= -->
<div id="logo" class="ms-auto ms-md-0">
<a>
<img class="logo-default" srcset="images/km_logo.png" alt="KeyMotive Logo">
<img class="logo-dark" srcset="images/km_logo.png" alt="KeyMotive Logo">
</a>
</div><!-- #logo end -->
</div>
</div>
<div id="header-wrap">
<div class="container">
<div class="header-row justify-content-between flex-row-reverse flex-lg-row">
<div class="header-misc">
<!-- Header Buttons
============================================= -->
<div class="header-buttons d-none d-sm-inline-block">
<a href="contact" data-offset="-80" class="button button-rounded button-white button-light button-small m-0">Contact Us</a>
</div>
</div>
<div class="primary-menu-trigger">
<button class="cnvs-hamburger" type="button" title="Open Mobile Menu">
<span class="cnvs-hamburger-box"><span class="cnvs-hamburger-inner"></span></span>
</button>
</div>
<!-- Primary Navigation
============================================= -->
<nav class="primary-menu with-arrows">
<ul class="menu-container">
<li class="menu-item"><a class="menu-link" href=""><div>Home</div></a></li>
<li class="menu-item"><a class="menu-link" href="about"><div>About Us</div></a></li>
<li class="menu-item"><a class="menu-link" href="privacy"><div>Privacy</div></a></li>
</ul>
</nav><!-- #primary-menu end -->
</div>
</div>
</div>
<div class="header-wrap-clone"></div>
</header><!-- #header end -->
<!-- Page Title
============================================= -->
<section class="page-title bg-color dark py-6">
@ -230,7 +145,7 @@
<div class="row justify-content-between align-items-center">
<div class="col-md-6 text-black-50">
Copyrights &copy; 2024 All Rights Reserved by KeyMotive LLC.
Copyright &copy; 2010 - @gloService.YearInFooter All Rights Reserved by KeyMotive LLC.
</div>
</div>
@ -244,5 +159,3 @@
<!-- Go To Top
============================================= -->
<div id="gotoTop" class="uil uil-angle-up"></div>
</body>
</html>

View File

@ -1,42 +1,8 @@
@page "/"
@inject Services.GlobalService gloService
<!DOCTYPE html>
<html dir="ltr" lang="en-US">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta http-equiv="x-ua-compatible" content="IE=edge">
<meta name="author" content="SemiColonWeb">
<meta name="description" content="Create Packers, Movers &amp; Shipping Websites with Canvas Template. Get Canvas to build powerful websites easily with the Highly Customizable &amp; Best Selling Bootstrap Template, today.">
<!-- Font Imports -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<!-- Core Style -->
<link rel="stylesheet" href="/style.css">
<!-- Font Icons -->
<link rel="stylesheet" href="css/font-icons.css">
<!-- Plugins/Components CSS -->
<link rel="stylesheet" href="css/components/datepicker.css">
<!-- Niche Demos -->
<link rel="stylesheet" href="demos/movers/movers.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/custom.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Document Title
============================================= -->
<title>KeyMail Specials</title>
</head>
<body class="stretched is-expanded-menu">
<CanvasHomePage />
<PageTitle>Home - @gloService.WebsiteName</PageTitle>
<!-- Document Wrapper
============================================= -->
@ -44,62 +10,7 @@
<!-- Header
============================================= -->
<header id="header" class="dark header-size-sm" data-sticky-shrink="false">
<div class="container">
<div class="header-row">
<!-- Logo
============================================= -->
<div id="logo" class="ms-auto ms-md-0">
<a>
<img class="logo-default" srcset="images/km_logo.png" alt="KeyMotive Logo">
<img class="logo-dark" srcset="images/km_logo.png" alt="KeyMotive Logo">
</a>
</div><!-- #logo end -->
</div>
</div>
<div id="header-wrap">
<div class="container">
<div class="header-row justify-content-between flex-row-reverse flex-lg-row">
<div class="header-misc">
<!-- Header Buttons
============================================= -->
<div class="header-buttons d-none d-sm-inline-block">
<a href="contact" data-offset="-80" class="button button-rounded button-white button-light button-small m-0">Contact Us</a>
</div>
</div>
<div class="primary-menu-trigger">
<button class="cnvs-hamburger" type="button" title="Open Mobile Menu">
<span class="cnvs-hamburger-box"><span class="cnvs-hamburger-inner"></span></span>
</button>
</div>
<!-- Primary Navigation
============================================= -->
<nav class="primary-menu with-arrows">
<ul class="menu-container">
<li class="menu-item current"><a class="menu-link"><div>Home</div></a></li>
<li class="menu-item"><a class="menu-link" href="about"><div>About Us</div></a></li>
<li class="menu-item"><a class="menu-link" href="privacy"><div>Privacy</div></a></li>
</ul>
</nav><!-- #primary-menu end -->
<form class="top-search-form" action="search.html" method="get">
<input type="text" name="q" class="form-control" value="" placeholder="Type &amp; Hit Enter.." autocomplete="off">
</form>
</div>
</div>
</div>
<div class="header-wrap-clone"></div>
</header><!-- #header end -->
<Header1 ActiveChoice=Header1.enuChoice.Home />
<!-- Slider
============================================= -->
@ -107,7 +18,7 @@
<div class="container mt-4" style="z-index: 2">
<div class="text-center">
<h2 class="text-white h2 fw-semibold mb-2">Welcome to KeyMailSpecials.com!</h2>
<h2 class="text-white h2 fw-semibold mb-2">Welcome to<br /><img src="/images/logos/kms24w.png" width="20%" class="img-fluid" /></h2>
<p class="text-white-50"></p>
</div>
<div class="row mt-5 justify-content-center">
@ -224,9 +135,21 @@
<div>
<svg preserveAspectRatio="xMidYMax meet" viewBox="0 0 1600 100" data-height="100">
<path style="opacity: 1;fill: rgba(255,255,255,0.75);" d="M1040,56c0.5,0,1,0,1.6,0c-16.6-8.9-36.4-15.7-66.4-15.7c-56,0-76.8,23.7-106.9,41C881.1,89.3,895.6,96,920,96
C979.5,96,980,56,1040,56z"></path> <path style="opacity: 1;fill: rgba(255,255,255,0.75);" d="M1699.8,96l0,10H1946l-0.3-6.9c0,0,0,0-88,0s-88.6-58.8-176.5-58.8c-51.4,0-73,20.1-99.6,36.8 c14.5,9.6,29.6,18.9,58.4,18.9C1699.8,96,1699.8,96,1699.8,96z"></path> <path style="opacity: 1;fill: rgba(255,255,255,0.75);" d="M1400,96c19.5,0,32.7-4.3,43.7-10c-35.2-17.3-54.1-45.7-115.5-45.7c-32.3,0-52.8,7.9-70.2,17.8 c6.4-1.3,13.6-2.1,22-2.1C1340.1,56,1340.3,96,1400,96z"></path> <path style="opacity: 1;fill: rgba(255,255,255,0.75);" d="M320,56c6.6,0,12.4,0.5,17.7,1.3c-17-9.6-37.3-17-68.5-17c-60.4,0-79.5,27.8-114,45.2 c11.2,6,24.6,10.5,44.8,10.5C260,96,259.9,56,320,56z"></path> <path style="opacity: 1;fill: rgba(255,255,255,0.75);" d="M680,96c23.7,0,38.1-6.3,50.5-13.9C699.6,64.8,679,40.3,622.2,40.3c-30,0-49.8,6.8-66.3,15.8 c1.3,0,2.7-0.1,4.1-0.1C619.7,56,620.2,96,680,96z"></path> <path style="opacity: 1;fill: rgba(255,255,255,0.75);" d="M-40,95.6c28.3,0,43.3-8.7,57.4-18C-9.6,60.8-31,40.2-83.2,40.2c-14.3,0-26.3,1.6-36.8,4.2V106h60V96L-40,95.6
C979.5,96,980,56,1040,56z"></path>
<path style="opacity: 1;fill: rgba(255,255,255,0.75);" d="M1699.8,96l0,10H1946l-0.3-6.9c0,0,0,0-88,0s-88.6-58.8-176.5-58.8c-51.4,0-73,20.1-99.6,36.8 c14.5,9.6,29.6,18.9,58.4,18.9C1699.8,96,1699.8,96,1699.8,96z"></path>
<path style="opacity: 1;fill: rgba(255,255,255,0.75);" d="M1400,96c19.5,0,32.7-4.3,43.7-10c-35.2-17.3-54.1-45.7-115.5-45.7c-32.3,0-52.8,7.9-70.2,17.8 c6.4-1.3,13.6-2.1,22-2.1C1340.1,56,1340.3,96,1400,96z"></path>
<path style="opacity: 1;fill: rgba(255,255,255,0.75);" d="M320,56c6.6,0,12.4,0.5,17.7,1.3c-17-9.6-37.3-17-68.5-17c-60.4,0-79.5,27.8-114,45.2 c11.2,6,24.6,10.5,44.8,10.5C260,96,259.9,56,320,56z"></path>
<path style="opacity: 1;fill: rgba(255,255,255,0.75);" d="M680,96c23.7,0,38.1-6.3,50.5-13.9C699.6,64.8,679,40.3,622.2,40.3c-30,0-49.8,6.8-66.3,15.8 c1.3,0,2.7-0.1,4.1-0.1C619.7,56,620.2,96,680,96z"></path>
<path style="opacity: 1;fill: rgba(255,255,255,0.75);" d="M-40,95.6c28.3,0,43.3-8.7,57.4-18C-9.6,60.8-31,40.2-83.2,40.2c-14.3,0-26.3,1.6-36.8,4.2V106h60V96L-40,95.6
z"></path>
<path style="opacity: 1;fill: rgba(255,255,255,0.3);;" d="M504,73.4c-2.6-0.8-5.7-1.4-9.6-1.4c-19.4,0-19.6,13-39,13c-19.4,0-19.5-13-39-13c-14,0-18,6.7-26.3,10.4 C402.4,89.9,416.7,96,440,96C472.5,96,487.5,84.2,504,73.4z"></path> <path style="opacity: 1;fill: rgba(255,255,255,0.3);;" d="M1205.4,85c-0.2,0-0.4,0-0.6,0c-19.5,0-19.5-13-39-13s-19.4,12.9-39,12.9c0,0-5.9,0-12.3,0.1 c11.4,6.3,24.9,11,45.5,11C1180.6,96,1194.1,91.2,1205.4,85z"></path> <path style="opacity: 1;fill: rgba(255,255,255,0.3);;" d="M1447.4,83.9c-2.4,0.7-5.2,1.1-8.6,1.1c-19.3,0-19.6-13-39-13s-19.6,13-39,13c-3,0-5.5-0.3-7.7-0.8 c11.6,6.6,25.4,11.8,46.9,11.8C1421.8,96,1435.7,90.7,1447.4,83.9z"></path> <path style="opacity: 1;fill: rgba(255,255,255,0.3);;" d="M985.8,72c-17.6,0.8-18.3,13-37,13c-19.4,0-19.5-13-39-13c-18.2,0-19.6,11.4-35.5,12.8 c11.4,6.3,25,11.2,45.7,11.2C953.7,96,968.5,83.2,985.8,72z"></path> <path style="opacity: 1;fill: rgba(255,255,255,0.3);;" d="M743.8,73.5c-10.3,3.4-13.6,11.5-29,11.5c-19.4,0-19.5-13-39-13s-19.5,13-39,13c-0.9,0-1.7,0-2.5-0.1 c11.4,6.3,25,11.1,45.7,11.1C712.4,96,727.3,84.2,743.8,73.5z"></path> <path style="opacity: 1;fill: rgba(255,255,255,0.3);;" d="M265.5,72.3c-1.5-0.2-3.2-0.3-5.1-0.3c-19.4,0-19.6,13-39,13c-19.4,0-19.6-13-39-13 c-15.9,0-18.9,8.7-30.1,11.9C164.1,90.6,178,96,200,96C233.7,96,248.4,83.4,265.5,72.3z"></path> <path style="opacity: 1;fill: rgba(255,255,255,0.3);;" d="M1692.3,96V85c0,0,0,0-19.5,0s-19.6-13-39-13s-19.6,13-39,13c-0.1,0-0.2,0-0.4,0c11.4,6.2,24.9,11,45.6,11 C1669.9,96,1684.8,96,1692.3,96z"></path> <path style="opacity: 1;fill: rgba(255,255,255,0.3);;" d="M25.5,72C6,72,6.1,84.9-13.5,84.9L-20,85v8.9C0.7,90.1,12.6,80.6,25.9,72C25.8,72,25.7,72,25.5,72z"></path>
<path style="opacity: 1;fill: rgba(255,255,255,0.3);;" d="M504,73.4c-2.6-0.8-5.7-1.4-9.6-1.4c-19.4,0-19.6,13-39,13c-19.4,0-19.5-13-39-13c-14,0-18,6.7-26.3,10.4 C402.4,89.9,416.7,96,440,96C472.5,96,487.5,84.2,504,73.4z"></path>
<path style="opacity: 1;fill: rgba(255,255,255,0.3);;" d="M1205.4,85c-0.2,0-0.4,0-0.6,0c-19.5,0-19.5-13-39-13s-19.4,12.9-39,12.9c0,0-5.9,0-12.3,0.1 c11.4,6.3,24.9,11,45.5,11C1180.6,96,1194.1,91.2,1205.4,85z"></path>
<path style="opacity: 1;fill: rgba(255,255,255,0.3);;" d="M1447.4,83.9c-2.4,0.7-5.2,1.1-8.6,1.1c-19.3,0-19.6-13-39-13s-19.6,13-39,13c-3,0-5.5-0.3-7.7-0.8 c11.6,6.6,25.4,11.8,46.9,11.8C1421.8,96,1435.7,90.7,1447.4,83.9z"></path>
<path style="opacity: 1;fill: rgba(255,255,255,0.3);;" d="M985.8,72c-17.6,0.8-18.3,13-37,13c-19.4,0-19.5-13-39-13c-18.2,0-19.6,11.4-35.5,12.8 c11.4,6.3,25,11.2,45.7,11.2C953.7,96,968.5,83.2,985.8,72z"></path>
<path style="opacity: 1;fill: rgba(255,255,255,0.3);;" d="M743.8,73.5c-10.3,3.4-13.6,11.5-29,11.5c-19.4,0-19.5-13-39-13s-19.5,13-39,13c-0.9,0-1.7,0-2.5-0.1 c11.4,6.3,25,11.1,45.7,11.1C712.4,96,727.3,84.2,743.8,73.5z"></path>
<path style="opacity: 1;fill: rgba(255,255,255,0.3);;" d="M265.5,72.3c-1.5-0.2-3.2-0.3-5.1-0.3c-19.4,0-19.6,13-39,13c-19.4,0-19.6-13-39-13 c-15.9,0-18.9,8.7-30.1,11.9C164.1,90.6,178,96,200,96C233.7,96,248.4,83.4,265.5,72.3z"></path>
<path style="opacity: 1;fill: rgba(255,255,255,0.3);;" d="M1692.3,96V85c0,0,0,0-19.5,0s-19.6-13-39-13s-19.6,13-39,13c-0.1,0-0.2,0-0.4,0c11.4,6.2,24.9,11,45.6,11 C1669.9,96,1684.8,96,1692.3,96z"></path>
<path style="opacity: 1;fill: rgba(255,255,255,0.3);;" d="M25.5,72C6,72,6.1,84.9-13.5,84.9L-20,85v8.9C0.7,90.1,12.6,80.6,25.9,72C25.8,72,25.7,72,25.5,72z"></path>
<path style="fill: rgb(255, 255, 255);" d="M-40,95.6C20.3,95.6,20.1,56,80,56s60,40,120,40s59.9-40,120-40s60.3,40,120,40s60.3-40,120-40s60.2,40,120,40s60.1-40,120-40s60.5,40,120,40s60-40,120-40s60.4,40,120,40s59.9-40,120-40s60.3,40,120,40s60.2-40,120-40s60.2,40,120,40s59.8,0,59.8,0l0.2,143H-60V96L-40,95.6z"></path>
</svg>
<div class="bg-white" style="height: 150px"></div>
@ -413,7 +336,6 @@
</div>
</div>
</section><!-- #content end -->
<!-- Footer
============================================= -->
<footer id="footer" class="bg-transparent border-0">
@ -426,7 +348,7 @@
<div class="row justify-content-between align-items-center">
<div class="col-md-6 text-black-50">
Copyrights &copy; 2024 All Rights Reserved by KeyMotive LLC.
Copyright &copy; 2010 - @gloService.YearInFooter All Rights Reserved by KeyMotive LLC.
</div>
</div>
@ -437,10 +359,8 @@
</footer><!-- #footer end -->
</div><!-- #wrapper end -->
<!-- Go To Top
============================================= -->
<div id="gotoTop" class="uil uil-angle-up"></div>
</body>
</html>

View File

@ -1,42 +1,8 @@
@page "/privacy"
@inject Services.GlobalService gloService
<!DOCTYPE html>
<html dir="ltr" lang="en-US">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta http-equiv="x-ua-compatible" content="IE=edge">
<meta name="author" content="SemiColonWeb">
<meta name="description" content="Create Packers, Movers &amp; Shipping Websites with Canvas Template. Get Canvas to build powerful websites easily with the Highly Customizable &amp; Best Selling Bootstrap Template, today.">
<!-- Font Imports -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<!-- Core Style -->
<link rel="stylesheet" href="style.css?version=0.1">
<!-- Font Icons -->
<link rel="stylesheet" href="css/font-icons.css">
<!-- Plugins/Components CSS -->
<link rel="stylesheet" href="css/components/datepicker.css">
<!-- Niche Demos -->
<link rel="stylesheet" href="demos/movers/movers.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/custom.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Document Title
============================================= -->
<title>Privacy</title>
</head>
<body class="stretched is-expanded-menu">
<CanvasHomePage />
<PageTitle>Privacy - @gloService.WebsiteName</PageTitle>
<!-- Document Wrapper
============================================= -->
@ -44,62 +10,8 @@
<!-- Header
============================================= -->
<header id="header" class="dark header-size-sm" data-sticky-shrink="false">
<div class="container">
<div class="header-row">
<Header1 ActiveChoice=Header1.enuChoice.Privacy/>
<!-- Logo
============================================= -->
<div id="logo" class="ms-auto ms-md-0">
<a>
<img class="logo-default" srcset="images/km_logo.png" alt="KeyMotive Logo">
<img class="logo-dark" srcset="images/km_logo.png" alt="KeyMotive Logo">
</a>
</div><!-- #logo end -->
</div>
</div>
<div id="header-wrap">
<div class="container">
<div class="header-row justify-content-between flex-row-reverse flex-lg-row">
<div class="header-misc">
<!-- Header Buttons
============================================= -->
<div class="header-buttons d-none d-sm-inline-block">
<a href="contact" data-offset="-80" class="button button-rounded button-white button-light button-small m-0">Contact Us</a>
</div>
</div>
<div class="primary-menu-trigger">
<button class="cnvs-hamburger" type="button" title="Open Mobile Menu">
<span class="cnvs-hamburger-box"><span class="cnvs-hamburger-inner"></span></span>
</button>
</div>
<!-- Primary Navigation
============================================= -->
<nav class="primary-menu with-arrows">
<ul class="menu-container">
<li class="menu-item"><a class="menu-link" href=""><div>Home</div></a></li>
<li class="menu-item"><a class="menu-link" href="about"><div>About Us</div></a></li>
<li class="menu-item current"><a class="menu-link" href="privacy"><div>Privacy</div></a></li>
</ul>
</nav><!-- #primary-menu end -->
<form class="top-search-form" action="search.html" method="get">
<input type="text" name="q" class="form-control" value="" placeholder="Type &amp; Hit Enter.." autocomplete="off">
</form>
</div>
</div>
</div>
<div class="header-wrap-clone"></div>
</header><!-- #header end -->
<!-- Page Title
============================================= -->
<section class="page-title bg-color dark py-6">
@ -284,7 +196,6 @@
<!-- Footer
============================================= -->
<footer id="footer" class="bg-transparent border-0">
<!-- Copyrights
============================================= -->
<div id="copyrights" class="bg-transparent">
@ -293,7 +204,7 @@
<div class="row justify-content-between align-items-center">
<div class="col-md-6 text-black-50">
Copyrights &copy; 2024 All Rights Reserved by KeyMotive LLC.
Copyright &copy; 2010 - @gloService.YearInFooter All Rights Reserved by KeyMotive LLC.
</div>
</div>
@ -307,6 +218,3 @@
<!-- Go To Top
============================================= -->
<div id="gotoTop" class="uil uil-angle-up"></div>
</body>
</html>

View File

@ -0,0 +1,8 @@
namespace KeymailSpecials2.Components.Services;
public class GlobalService
{
public string WebsiteName { get; set; } = "KeyMail Specials";
public int YearInFooter { get; set; } = DateTime.Today.AddDays(-14).Year;
}

View File

@ -8,3 +8,4 @@
@using Microsoft.JSInterop
@using KeymailSpecials2
@using KeymailSpecials2.Components
@using KeymailSpecials2.Components.Components

View File

@ -2085,4 +2085,12 @@
<None Include="wwwroot\style.css.map" />
</ItemGroup>
<Target Name="CustomActionsAfterPublish" AfterTargets="AfterPublish">
<!--<Exec Command="echo '$(PublishOutputFolder)' / '$(TargetDir)' / '$(TargetPath)' / '$(TargetName)' / '$(TargetFileName)' / '$(TargetExt)'" />-->
<!--<Exec Command="xcopy /s/e/q/r/k/y &quot;$(TargetDir)&quot;..\publish\win-x64\ \\salem\dev\DevVBnet\JobBuilder\ProcessJobPacket2\ " />-->
<!--<Exec Command="echo. > $(PublishUrl)_publishFinished.txt" />-->
<Exec Command="copy $(PublishUrl)web.config $(PublishUrl)_publishFinished.txt" />
<!--<Exec Command="echo $(PublishUrl) / $(PublishDir) " />-->
</Target>
</Project>

View File

@ -2,5 +2,6 @@
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ActiveDebugProfile>https</ActiveDebugProfile>
<NameOfLastUsedPublishProfile>C:\Repos\KeymailSpecials2\Properties\PublishProfiles\FolderProfile.pubxml</NameOfLastUsedPublishProfile>
</PropertyGroup>
</Project>

View File

@ -1,11 +1,18 @@
using KeymailSpecials2.Components;
using KeymailSpecials2.Components.Services;
internal class Program
{
private static void Main(string[] args)
{
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddRazorComponents()
.AddInteractiveServerComponents();
builder.Services.AddSingleton<GlobalService>(); // Global variables shared by all users
var app = builder.Build();
// Configure the HTTP request pipeline.
@ -25,3 +32,5 @@ app.MapRazorComponents<App>()
.AddInteractiveServerRenderMode();
app.Run();
}
}

File diff suppressed because one or more lines are too long

View File

@ -14,7 +14,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("KeymailSpecials2")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+31442e6b5faa764bb266725c99074f3bc38fad72")]
[assembly: System.Reflection.AssemblyProductAttribute("KeymailSpecials2")]
[assembly: System.Reflection.AssemblyTitleAttribute("KeymailSpecials2")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

View File

@ -1 +1 @@
409a22eda8d5868c5adcd68014fbf39c9fd5174b385348919d5a74ddaa6e2632
c45e709e2906c72c7f287f862fca049620b03e15ea043244afd298e1a3ad9691

View File

@ -9,55 +9,51 @@ build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = KeymailSpecials2
build_property.RootNamespace = KeymailSpecials2
build_property.ProjectDir = C:\Users\joshdeck.KEYMTV\Documents\Playground\KeymailSpecials2\
build_property.ProjectDir = C:\Repos\KeymailSpecials2\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.RazorLangVersion = 8.0
build_property.SupportLocalizedComponentNames =
build_property.GenerateRazorMetadataSourceChecksumAttributes =
build_property.MSBuildProjectDirectory = C:\Users\joshdeck.KEYMTV\Documents\Playground\KeymailSpecials2
build_property.MSBuildProjectDirectory = C:\Repos\KeymailSpecials2
build_property._RazorSourceGeneratorDebug =
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/App.razor]
[C:/Repos/KeymailSpecials2/Components/App.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBcHAucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Layout/NoNav.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xMYXlvdXRcTm9OYXYucmF6b3I=
[C:/Repos/KeymailSpecials2/Components/Components/CanvasHomePage.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xDb21wb25lbnRzXENhbnZhc0hvbWVQYWdlLnJhem9y
build_metadata.AdditionalFiles.CssScope =
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Pages/Counter.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xDb3VudGVyLnJhem9y
[C:/Repos/KeymailSpecials2/Components/Components/Header1.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xDb21wb25lbnRzXEhlYWRlcjEucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Pages/Error.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xFcnJvci5yYXpvcg==
[C:/Repos/KeymailSpecials2/Components/Layout/DefaultLayout.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xMYXlvdXRcRGVmYXVsdExheW91dC5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Pages/Home.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xIb21lLnJhem9y
[C:/Repos/KeymailSpecials2/Components/Pages/About.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBYm91dC5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Pages/Movers.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xNb3ZlcnMucmF6b3I=
[C:/Repos/KeymailSpecials2/Components/Pages/Contact.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xDb250YWN0LnJhem9y
build_metadata.AdditionalFiles.CssScope =
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Pages/Weather.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xXZWF0aGVyLnJhem9y
[C:/Repos/KeymailSpecials2/Components/Pages/Index.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xJbmRleC5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Routes.razor]
[C:/Repos/KeymailSpecials2/Components/Pages/Privacy.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xQcml2YWN5LnJhem9y
build_metadata.AdditionalFiles.CssScope =
[C:/Repos/KeymailSpecials2/Components/Routes.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xSb3V0ZXMucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/_Imports.razor]
[C:/Repos/KeymailSpecials2/Components/_Imports.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xfSW1wb3J0cy5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Layout/MainLayout.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xMYXlvdXRcTWFpbkxheW91dC5yYXpvcg==
build_metadata.AdditionalFiles.CssScope = b-fazdk3iuyr
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Layout/NavMenu.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xMYXlvdXRcTmF2TWVudS5yYXpvcg==
build_metadata.AdditionalFiles.CssScope = b-q5015zael5

View File

@ -1 +1 @@
5cf2a5cdf00dd089e91bd58de45358a98b0f2bc0980f855120b535a0a79c506d
7ec36b80e7cd8f5b925357e903d41631c0bcee27bf34ff3f9df8094256163bf7

View File

@ -27,3 +27,29 @@ C:\Users\joshdeck.KEYMTV\Documents\Playground\KeymailSpecials2\obj\Debug\net8.0\
C:\Users\joshdeck.KEYMTV\Documents\Playground\KeymailSpecials2\obj\Debug\net8.0\KeymailSpecials2.pdb
C:\Users\joshdeck.KEYMTV\Documents\Playground\KeymailSpecials2\obj\Debug\net8.0\KeymailSpecials2.genruntimeconfig.cache
C:\Users\joshdeck.KEYMTV\Documents\Playground\KeymailSpecials2\obj\Debug\net8.0\ref\KeymailSpecials2.dll
C:\Repos\KeymailSpecials2\bin\Debug\net8.0\appsettings.Development.json
C:\Repos\KeymailSpecials2\bin\Debug\net8.0\appsettings.json
C:\Repos\KeymailSpecials2\bin\Debug\net8.0\KeymailSpecials2.staticwebassets.runtime.json
C:\Repos\KeymailSpecials2\bin\Debug\net8.0\KeymailSpecials2.exe
C:\Repos\KeymailSpecials2\bin\Debug\net8.0\KeymailSpecials2.deps.json
C:\Repos\KeymailSpecials2\bin\Debug\net8.0\KeymailSpecials2.runtimeconfig.json
C:\Repos\KeymailSpecials2\bin\Debug\net8.0\KeymailSpecials2.dll
C:\Repos\KeymailSpecials2\bin\Debug\net8.0\KeymailSpecials2.pdb
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\KeymailSpecials2.GeneratedMSBuildEditorConfig.editorconfig
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\KeymailSpecials2.AssemblyInfoInputs.cache
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\KeymailSpecials2.AssemblyInfo.cs
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\KeymailSpecials2.csproj.CoreCompileInputs.cache
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\KeymailSpecials2.MvcApplicationPartsAssemblyInfo.cache
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\staticwebassets.build.json
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\staticwebassets.development.json
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\staticwebassets\msbuild.KeymailSpecials2.Microsoft.AspNetCore.StaticWebAssets.props
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\staticwebassets\msbuild.build.KeymailSpecials2.props
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\staticwebassets\msbuild.buildMultiTargeting.KeymailSpecials2.props
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.KeymailSpecials2.props
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\staticwebassets.pack.json
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\scopedcss\bundle\KeymailSpecials2.styles.css
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\KeymailSpecials2.dll
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\refint\KeymailSpecials2.dll
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\KeymailSpecials2.pdb
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\KeymailSpecials2.genruntimeconfig.cache
C:\Repos\KeymailSpecials2\obj\Debug\net8.0\ref\KeymailSpecials2.dll

View File

@ -1 +1 @@
9a4eaf49489ac670fd322d536d4c83a4dc7d3698ebe4b201ccdffd1c8fb475ee
8e826a41a73f0e77136e300991dc8674e8e8c4cf82f47084f53eb8a9f7c72695

Binary file not shown.

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

View File

@ -1888,12 +1888,12 @@
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\hosting\images\svg\map-light.svg))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\hosting\images\svg\map.png))">
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\hosting\images\svg\map.svg))">
<SourceType>Package</SourceType>
<SourceId>KeymailSpecials2</SourceId>
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
<BasePath>_content/KeymailSpecials2</BasePath>
<RelativePath>demos/hosting/images/svg/map.png</RelativePath>
<RelativePath>demos/hosting/images/svg/map.svg</RelativePath>
<AssetKind>All</AssetKind>
<AssetMode>All</AssetMode>
<AssetRole>Primary</AssetRole>
@ -1902,7 +1902,7 @@
<AssetTraitValue></AssetTraitValue>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\hosting\images\svg\map.png))</OriginalItemSpec>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\hosting\images\svg\map.svg))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\hosting\images\svg\shared.svg))">
<SourceType>Package</SourceType>
@ -2064,12 +2064,12 @@
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\hosting\images\users\5.jpg))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\2.svg))">
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\12w3qdaad2.svg.bak))">
<SourceType>Package</SourceType>
<SourceId>KeymailSpecials2</SourceId>
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
<BasePath>_content/KeymailSpecials2</BasePath>
<RelativePath>demos/movers/images/2.svg</RelativePath>
<RelativePath>demos/movers/images/12w3qdaad2.svg.bak</RelativePath>
<AssetKind>All</AssetKind>
<AssetMode>All</AssetMode>
<AssetRole>Primary</AssetRole>
@ -2078,7 +2078,7 @@
<AssetTraitValue></AssetTraitValue>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\2.svg))</OriginalItemSpec>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\12w3qdaad2.svg.bak))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\baggage.png))">
<SourceType>Package</SourceType>
@ -2464,6 +2464,38 @@
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\featured-img\Thumbs.db))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\happy.svg))">
<SourceType>Package</SourceType>
<SourceId>KeymailSpecials2</SourceId>
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
<BasePath>_content/KeymailSpecials2</BasePath>
<RelativePath>demos/movers/images/happy.svg</RelativePath>
<AssetKind>All</AssetKind>
<AssetMode>All</AssetMode>
<AssetRole>Primary</AssetRole>
<RelatedAsset></RelatedAsset>
<AssetTraitName></AssetTraitName>
<AssetTraitValue></AssetTraitValue>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\happy.svg))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\join.svg))">
<SourceType>Package</SourceType>
<SourceId>KeymailSpecials2</SourceId>
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
<BasePath>_content/KeymailSpecials2</BasePath>
<RelativePath>demos/movers/images/join.svg</RelativePath>
<AssetKind>All</AssetKind>
<AssetMode>All</AssetMode>
<AssetRole>Primary</AssetRole>
<RelatedAsset></RelatedAsset>
<AssetTraitName></AssetTraitName>
<AssetTraitValue></AssetTraitValue>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\join.svg))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\others\1.png))">
<SourceType>Package</SourceType>
<SourceId>KeymailSpecials2</SourceId>
@ -2528,12 +2560,12 @@
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\others\4.png))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\section\1.jpg))">
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\privacy.svg))">
<SourceType>Package</SourceType>
<SourceId>KeymailSpecials2</SourceId>
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
<BasePath>_content/KeymailSpecials2</BasePath>
<RelativePath>demos/movers/images/section/1.jpg</RelativePath>
<RelativePath>demos/movers/images/privacy.svg</RelativePath>
<AssetKind>All</AssetKind>
<AssetMode>All</AssetMode>
<AssetRole>Primary</AssetRole>
@ -2542,7 +2574,7 @@
<AssetTraitValue></AssetTraitValue>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\section\1.jpg))</OriginalItemSpec>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\privacy.svg))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\section\2.jpg))">
<SourceType>Package</SourceType>
@ -2560,6 +2592,38 @@
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\section\2.jpg))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\section\backdrop.jpg))">
<SourceType>Package</SourceType>
<SourceId>KeymailSpecials2</SourceId>
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
<BasePath>_content/KeymailSpecials2</BasePath>
<RelativePath>demos/movers/images/section/backdrop.jpg</RelativePath>
<AssetKind>All</AssetKind>
<AssetMode>All</AssetMode>
<AssetRole>Primary</AssetRole>
<RelatedAsset></RelatedAsset>
<AssetTraitName></AssetTraitName>
<AssetTraitValue></AssetTraitValue>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\section\backdrop.jpg))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\section\collab.svg))">
<SourceType>Package</SourceType>
<SourceId>KeymailSpecials2</SourceId>
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
<BasePath>_content/KeymailSpecials2</BasePath>
<RelativePath>demos/movers/images/section/collab.svg</RelativePath>
<AssetKind>All</AssetKind>
<AssetMode>All</AssetMode>
<AssetRole>Primary</AssetRole>
<RelatedAsset></RelatedAsset>
<AssetTraitName></AssetTraitName>
<AssetTraitValue></AssetTraitValue>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\section\collab.svg))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\section\company.jpg))">
<SourceType>Package</SourceType>
<SourceId>KeymailSpecials2</SourceId>
@ -2576,6 +2640,22 @@
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\section\company.jpg))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\section\success.jpg))">
<SourceType>Package</SourceType>
<SourceId>KeymailSpecials2</SourceId>
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
<BasePath>_content/KeymailSpecials2</BasePath>
<RelativePath>demos/movers/images/section/success.jpg</RelativePath>
<AssetKind>All</AssetKind>
<AssetMode>All</AssetMode>
<AssetRole>Primary</AssetRole>
<RelatedAsset></RelatedAsset>
<AssetTraitName></AssetTraitName>
<AssetTraitValue></AssetTraitValue>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\section\success.jpg))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\slider\1.png))">
<SourceType>Package</SourceType>
<SourceId>KeymailSpecials2</SourceId>
@ -2592,6 +2672,38 @@
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\slider\1.png))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\startae-team-7tXA8xwe4W4-unsplash.jpg))">
<SourceType>Package</SourceType>
<SourceId>KeymailSpecials2</SourceId>
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
<BasePath>_content/KeymailSpecials2</BasePath>
<RelativePath>demos/movers/images/startae-team-7tXA8xwe4W4-unsplash.jpg</RelativePath>
<AssetKind>All</AssetKind>
<AssetMode>All</AssetMode>
<AssetRole>Primary</AssetRole>
<RelatedAsset></RelatedAsset>
<AssetTraitName></AssetTraitName>
<AssetTraitValue></AssetTraitValue>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\startae-team-7tXA8xwe4W4-unsplash.jpg))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\stats.svg))">
<SourceType>Package</SourceType>
<SourceId>KeymailSpecials2</SourceId>
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
<BasePath>_content/KeymailSpecials2</BasePath>
<RelativePath>demos/movers/images/stats.svg</RelativePath>
<AssetKind>All</AssetKind>
<AssetMode>All</AssetMode>
<AssetRole>Primary</AssetRole>
<RelatedAsset></RelatedAsset>
<AssetTraitName></AssetTraitName>
<AssetTraitValue></AssetTraitValue>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\stats.svg))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\team\1.jpg))">
<SourceType>Package</SourceType>
<SourceId>KeymailSpecials2</SourceId>
@ -2752,6 +2864,22 @@
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\team\section.jpg))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\user_nums.svg))">
<SourceType>Package</SourceType>
<SourceId>KeymailSpecials2</SourceId>
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
<BasePath>_content/KeymailSpecials2</BasePath>
<RelativePath>demos/movers/images/user_nums.svg</RelativePath>
<AssetKind>All</AssetKind>
<AssetMode>All</AssetMode>
<AssetRole>Primary</AssetRole>
<RelatedAsset></RelatedAsset>
<AssetTraitName></AssetTraitName>
<AssetTraitValue></AssetTraitValue>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\images\user_nums.svg))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\demos\movers\movers.css))">
<SourceType>Package</SourceType>
<SourceId>KeymailSpecials2</SourceId>
@ -23280,6 +23408,22 @@
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\intro\templates-mega-menu.jpg))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\km_logo.png))">
<SourceType>Package</SourceType>
<SourceId>KeymailSpecials2</SourceId>
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
<BasePath>_content/KeymailSpecials2</BasePath>
<RelativePath>images/km_logo.png</RelativePath>
<AssetKind>All</AssetKind>
<AssetMode>All</AssetMode>
<AssetRole>Primary</AssetRole>
<RelatedAsset></RelatedAsset>
<AssetTraitName></AssetTraitName>
<AssetTraitValue></AssetTraitValue>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\km_logo.png))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\landing\bootstrap.png))">
<SourceType>Package</SourceType>
<SourceId>KeymailSpecials2</SourceId>
@ -24048,22 +24192,6 @@
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\logo-v7.png))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\logo.png))">
<SourceType>Package</SourceType>
<SourceId>KeymailSpecials2</SourceId>
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
<BasePath>_content/KeymailSpecials2</BasePath>
<RelativePath>images/logo.png</RelativePath>
<AssetKind>All</AssetKind>
<AssetMode>All</AssetMode>
<AssetRole>Primary</AssetRole>
<RelatedAsset></RelatedAsset>
<AssetTraitName></AssetTraitName>
<AssetTraitValue></AssetTraitValue>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\logo.png))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\logo@2x.png))">
<SourceType>Package</SourceType>
<SourceId>KeymailSpecials2</SourceId>
@ -24080,6 +24208,38 @@
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\logo@2x.png))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\logos\kms24.png))">
<SourceType>Package</SourceType>
<SourceId>KeymailSpecials2</SourceId>
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
<BasePath>_content/KeymailSpecials2</BasePath>
<RelativePath>images/logos/kms24.png</RelativePath>
<AssetKind>All</AssetKind>
<AssetMode>All</AssetMode>
<AssetRole>Primary</AssetRole>
<RelatedAsset></RelatedAsset>
<AssetTraitName></AssetTraitName>
<AssetTraitValue></AssetTraitValue>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\logos\kms24.png))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\logos\kms24w.png))">
<SourceType>Package</SourceType>
<SourceId>KeymailSpecials2</SourceId>
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
<BasePath>_content/KeymailSpecials2</BasePath>
<RelativePath>images/logos/kms24w.png</RelativePath>
<AssetKind>All</AssetKind>
<AssetMode>All</AssetMode>
<AssetRole>Primary</AssetRole>
<RelatedAsset></RelatedAsset>
<AssetTraitName></AssetTraitName>
<AssetTraitValue></AssetTraitValue>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\logos\kms24w.png))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\images\mac.png))">
<SourceType>Package</SourceType>
<SourceId>KeymailSpecials2</SourceId>
@ -37728,22 +37888,6 @@
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\js\plugins.youtube.js))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\KeymailSpecials2.bundle.scp.css))">
<SourceType>Package</SourceType>
<SourceId>KeymailSpecials2</SourceId>
<ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot>
<BasePath>_content/KeymailSpecials2</BasePath>
<RelativePath>KeymailSpecials2.bundle.scp.css</RelativePath>
<AssetKind>All</AssetKind>
<AssetMode>Reference</AssetMode>
<AssetRole>Primary</AssetRole>
<RelatedAsset></RelatedAsset>
<AssetTraitName>ScopedCss</AssetTraitName>
<AssetTraitValue>ProjectBundle</AssetTraitValue>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<OriginalItemSpec>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\KeymailSpecials2.bundle.scp.css))</OriginalItemSpec>
</StaticWebAsset>
<StaticWebAsset Include="$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\staticwebassets\style.css))">
<SourceType>Package</SourceType>
<SourceId>KeymailSpecials2</SourceId>

View File

@ -1,23 +1,23 @@
{
"format": 1,
"restore": {
"C:\\Users\\joshdeck.KEYMTV\\Documents\\Playground\\KeymailSpecials2\\KeymailSpecials2.csproj": {}
"C:\\Repos\\KeymailSpecials2\\KeymailSpecials2.csproj": {}
},
"projects": {
"C:\\Users\\joshdeck.KEYMTV\\Documents\\Playground\\KeymailSpecials2\\KeymailSpecials2.csproj": {
"C:\\Repos\\KeymailSpecials2\\KeymailSpecials2.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\joshdeck.KEYMTV\\Documents\\Playground\\KeymailSpecials2\\KeymailSpecials2.csproj",
"projectUniqueName": "C:\\Repos\\KeymailSpecials2\\KeymailSpecials2.csproj",
"projectName": "KeymailSpecials2",
"projectPath": "C:\\Users\\joshdeck.KEYMTV\\Documents\\Playground\\KeymailSpecials2\\KeymailSpecials2.csproj",
"packagesPath": "C:\\Users\\joshdeck.KEYMTV\\.nuget\\packages\\",
"outputPath": "C:\\Users\\joshdeck.KEYMTV\\Documents\\Playground\\KeymailSpecials2\\obj\\",
"projectPath": "C:\\Repos\\KeymailSpecials2\\KeymailSpecials2.csproj",
"packagesPath": "C:\\Users\\RDeck.KEYMTV\\.nuget\\packages\\",
"outputPath": "C:\\Repos\\KeymailSpecials2\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\joshdeck.KEYMTV\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Users\\RDeck.KEYMTV\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
@ -27,7 +27,8 @@
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"C:\\Program Files\\dotnet\\library-packs": {},
"https://api.nuget.org/v3/index.json": {}
"https://api.nuget.org/v3/index.json": {},
"https://nuget.telerik.com/v3/index.json": {}
},
"frameworks": {
"net8.0": {
@ -39,6 +40,11 @@
"warnAsError": [
"NU1605"
]
},
"restoreAuditProperties": {
"enableAudit": "true",
"auditLevel": "low",
"auditMode": "direct"
}
},
"frameworks": {
@ -63,7 +69,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.101/PortableRuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.202/PortableRuntimeIdentifierGraph.json"
}
}
}

View File

@ -5,12 +5,12 @@
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\joshdeck.KEYMTV\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\RDeck.KEYMTV\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.8.0</NuGetToolVersion>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.9.1</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\joshdeck.KEYMTV\.nuget\packages\" />
<SourceRoot Include="C:\Users\RDeck.KEYMTV\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
</ItemGroup>
</Project>

View File

@ -14,7 +14,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("KeymailSpecials2")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+b882befbc379facedc69bd3651c4fff409b0a9d2")]
[assembly: System.Reflection.AssemblyProductAttribute("KeymailSpecials2")]
[assembly: System.Reflection.AssemblyTitleAttribute("KeymailSpecials2")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

View File

@ -1 +1 @@
a4b1ba513a750d2ada915061d50cbda53a50d32c212d28e14187eee0c851695b
7941920a16e6f6b50352f929d5202d72e5d639bfee7eed5cfddaff3cf89ac2f2

View File

@ -9,55 +9,51 @@ build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = KeymailSpecials2
build_property.RootNamespace = KeymailSpecials2
build_property.ProjectDir = C:\Users\joshdeck.KEYMTV\Documents\Playground\KeymailSpecials2\
build_property.ProjectDir = C:\Repos\KeymailSpecials2\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.RazorLangVersion = 8.0
build_property.SupportLocalizedComponentNames =
build_property.GenerateRazorMetadataSourceChecksumAttributes =
build_property.MSBuildProjectDirectory = C:\Users\joshdeck.KEYMTV\Documents\Playground\KeymailSpecials2
build_property.MSBuildProjectDirectory = C:\Repos\KeymailSpecials2
build_property._RazorSourceGeneratorDebug =
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/App.razor]
[C:/Repos/KeymailSpecials2/Components/App.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xBcHAucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Layout/NoNav.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xMYXlvdXRcTm9OYXYucmF6b3I=
[C:/Repos/KeymailSpecials2/Components/Components/CanvasHomePage.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xDb21wb25lbnRzXENhbnZhc0hvbWVQYWdlLnJhem9y
build_metadata.AdditionalFiles.CssScope =
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Pages/Counter.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xDb3VudGVyLnJhem9y
[C:/Repos/KeymailSpecials2/Components/Components/Header1.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xDb21wb25lbnRzXEhlYWRlcjEucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Pages/Error.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xFcnJvci5yYXpvcg==
[C:/Repos/KeymailSpecials2/Components/Layout/DefaultLayout.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xMYXlvdXRcRGVmYXVsdExheW91dC5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Pages/Home.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xIb21lLnJhem9y
[C:/Repos/KeymailSpecials2/Components/Pages/About.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBYm91dC5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Pages/Movers.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xNb3ZlcnMucmF6b3I=
[C:/Repos/KeymailSpecials2/Components/Pages/Contact.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xDb250YWN0LnJhem9y
build_metadata.AdditionalFiles.CssScope =
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Pages/Weather.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xXZWF0aGVyLnJhem9y
[C:/Repos/KeymailSpecials2/Components/Pages/Index.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xJbmRleC5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Routes.razor]
[C:/Repos/KeymailSpecials2/Components/Pages/Privacy.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xQcml2YWN5LnJhem9y
build_metadata.AdditionalFiles.CssScope =
[C:/Repos/KeymailSpecials2/Components/Routes.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xSb3V0ZXMucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/_Imports.razor]
[C:/Repos/KeymailSpecials2/Components/_Imports.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xfSW1wb3J0cy5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Layout/MainLayout.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xMYXlvdXRcTWFpbkxheW91dC5yYXpvcg==
build_metadata.AdditionalFiles.CssScope = b-fazdk3iuyr
[C:/Users/joshdeck.KEYMTV/Documents/Playground/KeymailSpecials2/Components/Layout/NavMenu.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xMYXlvdXRcTmF2TWVudS5yYXpvcg==
build_metadata.AdditionalFiles.CssScope = b-q5015zael5

View File

@ -8,23 +8,23 @@
"net8.0": []
},
"packageFolders": {
"C:\\Users\\joshdeck.KEYMTV\\.nuget\\packages\\": {},
"C:\\Users\\RDeck.KEYMTV\\.nuget\\packages\\": {},
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\joshdeck.KEYMTV\\Documents\\Playground\\KeymailSpecials2\\KeymailSpecials2.csproj",
"projectUniqueName": "C:\\Repos\\KeymailSpecials2\\KeymailSpecials2.csproj",
"projectName": "KeymailSpecials2",
"projectPath": "C:\\Users\\joshdeck.KEYMTV\\Documents\\Playground\\KeymailSpecials2\\KeymailSpecials2.csproj",
"packagesPath": "C:\\Users\\joshdeck.KEYMTV\\.nuget\\packages\\",
"outputPath": "C:\\Users\\joshdeck.KEYMTV\\Documents\\Playground\\KeymailSpecials2\\obj\\",
"projectPath": "C:\\Repos\\KeymailSpecials2\\KeymailSpecials2.csproj",
"packagesPath": "C:\\Users\\RDeck.KEYMTV\\.nuget\\packages\\",
"outputPath": "C:\\Repos\\KeymailSpecials2\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\joshdeck.KEYMTV\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Users\\RDeck.KEYMTV\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
@ -34,7 +34,8 @@
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"C:\\Program Files\\dotnet\\library-packs": {},
"https://api.nuget.org/v3/index.json": {}
"https://api.nuget.org/v3/index.json": {},
"https://nuget.telerik.com/v3/index.json": {}
},
"frameworks": {
"net8.0": {
@ -46,6 +47,11 @@
"warnAsError": [
"NU1605"
]
},
"restoreAuditProperties": {
"enableAudit": "true",
"auditLevel": "low",
"auditMode": "direct"
}
},
"frameworks": {
@ -70,7 +76,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.101/PortableRuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.202/PortableRuntimeIdentifierGraph.json"
}
}
}

View File

@ -1,8 +1,8 @@
{
"version": 2,
"dgSpecHash": "/R+oHBLNm/Igl7KyeR6wTs8+nFFqjgP19xheg9A2WzJTSf5unLksnAKdzPw52Ztfywr35w0tfIFhsFwjQB1ncw==",
"dgSpecHash": "Agtvjp0J5GZIGoQ8e7I1nfum3ajQhVf/czwRhntO6PXxI0neBscuov1EDbzrF9cvmNtPY+XYxgqNWbhmeU54KA==",
"success": true,
"projectFilePath": "C:\\Users\\joshdeck.KEYMTV\\Documents\\Playground\\KeymailSpecials2\\KeymailSpecials2.csproj",
"projectFilePath": "C:\\Repos\\KeymailSpecials2\\KeymailSpecials2.csproj",
"expectedPackageFiles": [],
"logs": []
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 149 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 146 KiB