diff options
| author | Sjory <Mgj32000@gmail.com> | 2024-12-01 12:42:33 +0100 |
|---|---|---|
| committer | Sjory <Mgj32000@gmail.com> | 2024-12-01 12:42:33 +0100 |
| commit | ca3e50a78787685fb5a39c6f751a87b2beb65c17 (patch) | |
| tree | 6e91f879d8539db0132bd64447a8d1d436ef2dcc /DrinksMachineWebsite | |
| parent | eedb2bdb2cc1293e6abb4099d700222b7260baaa (diff) | |
testing
made classes for alcohol and drinks
tried to make a list of drinks
gonna try maybe a json to store information and make a page for creating new drinks
Diffstat (limited to 'DrinksMachineWebsite')
65 files changed, 6579 insertions, 13 deletions
diff --git a/DrinksMachineWebsite/.vs/DrinksMachineWebsite/DesignTimeBuild/.dtbcache.v2 b/DrinksMachineWebsite/.vs/DrinksMachineWebsite/DesignTimeBuild/.dtbcache.v2 Binary files differnew file mode 100644 index 0000000..419d085 --- /dev/null +++ b/DrinksMachineWebsite/.vs/DrinksMachineWebsite/DesignTimeBuild/.dtbcache.v2 diff --git a/DrinksMachineWebsite/.vs/DrinksMachineWebsite/FileContentIndex/02b42e95-ccd8-431c-948c-55a56cb51229.vsidx b/DrinksMachineWebsite/.vs/DrinksMachineWebsite/FileContentIndex/02b42e95-ccd8-431c-948c-55a56cb51229.vsidx Binary files differnew file mode 100644 index 0000000..e012f72 --- /dev/null +++ b/DrinksMachineWebsite/.vs/DrinksMachineWebsite/FileContentIndex/02b42e95-ccd8-431c-948c-55a56cb51229.vsidx diff --git a/DrinksMachineWebsite/.vs/DrinksMachineWebsite/FileContentIndex/93c9bf8a-70e0-4cde-b433-a9c735b7a003.vsidx b/DrinksMachineWebsite/.vs/DrinksMachineWebsite/FileContentIndex/93c9bf8a-70e0-4cde-b433-a9c735b7a003.vsidx Binary files differnew file mode 100644 index 0000000..99f2ece --- /dev/null +++ b/DrinksMachineWebsite/.vs/DrinksMachineWebsite/FileContentIndex/93c9bf8a-70e0-4cde-b433-a9c735b7a003.vsidx diff --git a/DrinksMachineWebsite/.vs/DrinksMachineWebsite/FileContentIndex/ce1e279a-effb-4b11-8310-99fa2161fda6.vsidx b/DrinksMachineWebsite/.vs/DrinksMachineWebsite/FileContentIndex/ce1e279a-effb-4b11-8310-99fa2161fda6.vsidx Binary files differnew file mode 100644 index 0000000..57e5132 --- /dev/null +++ b/DrinksMachineWebsite/.vs/DrinksMachineWebsite/FileContentIndex/ce1e279a-effb-4b11-8310-99fa2161fda6.vsidx diff --git a/DrinksMachineWebsite/.vs/DrinksMachineWebsite/FileContentIndex/db123bf9-d56b-4571-a561-53224812ec61.vsidx b/DrinksMachineWebsite/.vs/DrinksMachineWebsite/FileContentIndex/db123bf9-d56b-4571-a561-53224812ec61.vsidx Binary files differdeleted file mode 100644 index 93b9118..0000000 --- a/DrinksMachineWebsite/.vs/DrinksMachineWebsite/FileContentIndex/db123bf9-d56b-4571-a561-53224812ec61.vsidx +++ /dev/null diff --git a/DrinksMachineWebsite/.vs/DrinksMachineWebsite/FileContentIndex/dc59f08c-a36a-4e90-a536-8f9cd00ea762.vsidx b/DrinksMachineWebsite/.vs/DrinksMachineWebsite/FileContentIndex/dc59f08c-a36a-4e90-a536-8f9cd00ea762.vsidx Binary files differnew file mode 100644 index 0000000..04affd5 --- /dev/null +++ b/DrinksMachineWebsite/.vs/DrinksMachineWebsite/FileContentIndex/dc59f08c-a36a-4e90-a536-8f9cd00ea762.vsidx diff --git a/DrinksMachineWebsite/.vs/DrinksMachineWebsite/config/applicationhost.config b/DrinksMachineWebsite/.vs/DrinksMachineWebsite/config/applicationhost.config new file mode 100644 index 0000000..269dc55 --- /dev/null +++ b/DrinksMachineWebsite/.vs/DrinksMachineWebsite/config/applicationhost.config @@ -0,0 +1,1021 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + + IIS configuration sections. + + For schema documentation, see + %IIS_BIN%\config\schema\IIS_schema.xml. + + Please make a backup of this file before making any changes to it. + + NOTE: The following environment variables are available to be used + within this file and are understood by the IIS Express. + + %IIS_USER_HOME% - The IIS Express home directory for the user + %IIS_SITES_HOME% - The default home directory for sites + %IIS_BIN% - The location of the IIS Express binaries + %SYSTEMDRIVE% - The drive letter of %IIS_BIN% + +--> + +<configuration> + + <!-- + + The <configSections> section controls the registration of sections. + Section is the basic unit of deployment, locking, searching and + containment for configuration settings. + + Every section belongs to one section group. + A section group is a container of logically-related sections. + + Sections cannot be nested. + Section groups may be nested. + + <section + name="" [Required, Collection Key] [XML name of the section] + allowDefinition="Everywhere" [MachineOnly|MachineToApplication|AppHostOnly|Everywhere] [Level where it can be set] + overrideModeDefault="Allow" [Allow|Deny] [Default delegation mode] + allowLocation="true" [true|false] [Allowed in location tags] + /> + + The recommended way to unlock sections is by using a location tag: + <location path="Default Web Site" overrideMode="Allow"> + <system.webServer> + <asp /> + </system.webServer> + </location> + + --> + <configSections> + <sectionGroup name="system.applicationHost"> + <section name="applicationPools" allowDefinition="AppHostOnly" overrideModeDefault="Deny" /> + <section name="configHistory" allowDefinition="AppHostOnly" overrideModeDefault="Deny" /> + <section name="customMetadata" allowDefinition="AppHostOnly" overrideModeDefault="Deny" /> + <section name="listenerAdapters" allowDefinition="AppHostOnly" overrideModeDefault="Deny" /> + <section name="log" allowDefinition="AppHostOnly" overrideModeDefault="Deny" /> + <section name="serviceAutoStartProviders" allowDefinition="AppHostOnly" overrideModeDefault="Deny" /> + <section name="sites" allowDefinition="AppHostOnly" overrideModeDefault="Deny" /> + <section name="webLimits" allowDefinition="AppHostOnly" overrideModeDefault="Deny" /> + </sectionGroup> + + <sectionGroup name="system.webServer"> + <section name="asp" overrideModeDefault="Deny" /> + <section name="caching" overrideModeDefault="Allow" /> + <section name="cgi" overrideModeDefault="Deny" /> + <section name="defaultDocument" overrideModeDefault="Allow" /> + <section name="directoryBrowse" overrideModeDefault="Allow" /> + <section name="fastCgi" allowDefinition="AppHostOnly" overrideModeDefault="Deny" /> + <section name="globalModules" allowDefinition="AppHostOnly" overrideModeDefault="Deny" /> + <section name="handlers" overrideModeDefault="Deny" /> + <section name="httpCompression" overrideModeDefault="Allow" allowDefinition="Everywhere" /> + <section name="httpErrors" overrideModeDefault="Allow" /> + <section name="httpLogging" overrideModeDefault="Deny" /> + <section name="httpProtocol" overrideModeDefault="Allow" /> + <section name="httpRedirect" overrideModeDefault="Allow" /> + <section name="httpTracing" overrideModeDefault="Deny" /> + <section name="isapiFilters" allowDefinition="MachineToApplication" overrideModeDefault="Deny" /> + <section name="modules" allowDefinition="MachineToApplication" overrideModeDefault="Deny" /> + <section name="applicationInitialization" allowDefinition="MachineToApplication" overrideModeDefault="Allow" /> + <section name="odbcLogging" overrideModeDefault="Deny" /> + <sectionGroup name="security"> + <section name="access" overrideModeDefault="Deny" /> + <section name="applicationDependencies" overrideModeDefault="Deny" /> + <sectionGroup name="authentication"> + <section name="anonymousAuthentication" overrideModeDefault="Deny" /> + <section name="basicAuthentication" overrideModeDefault="Deny" /> + <section name="clientCertificateMappingAuthentication" overrideModeDefault="Deny" /> + <section name="digestAuthentication" overrideModeDefault="Deny" /> + <section name="iisClientCertificateMappingAuthentication" overrideModeDefault="Deny" /> + <section name="windowsAuthentication" overrideModeDefault="Deny" /> + </sectionGroup> + <section name="authorization" overrideModeDefault="Allow" /> + <section name="ipSecurity" overrideModeDefault="Deny" /> + <section name="dynamicIpSecurity" overrideModeDefault="Deny" /> + <section name="isapiCgiRestriction" allowDefinition="AppHostOnly" overrideModeDefault="Deny" /> + <section name="requestFiltering" overrideModeDefault="Allow" /> + </sectionGroup> + <section name="serverRuntime" overrideModeDefault="Deny" /> + <section name="serverSideInclude" overrideModeDefault="Deny" /> + <section name="staticContent" overrideModeDefault="Allow" /> + <sectionGroup name="tracing"> + <section name="traceFailedRequests" overrideModeDefault="Allow" /> + <section name="traceProviderDefinitions" overrideModeDefault="Deny" /> + </sectionGroup> + <section name="urlCompression" overrideModeDefault="Allow" /> + <section name="validation" overrideModeDefault="Allow" /> + <sectionGroup name="webdav"> + <section name="globalSettings" overrideModeDefault="Deny" /> + <section name="authoring" overrideModeDefault="Deny" /> + <section name="authoringRules" overrideModeDefault="Deny" /> + </sectionGroup> + <sectionGroup name="rewrite"> + <section name="allowedServerVariables" overrideModeDefault="Deny" /> + <section name="rules" overrideModeDefault="Allow" /> + <section name="outboundRules" overrideModeDefault="Allow" /> + <section name="globalRules" overrideModeDefault="Deny" allowDefinition="AppHostOnly" /> + <section name="providers" overrideModeDefault="Allow" /> + <section name="rewriteMaps" overrideModeDefault="Allow" /> + </sectionGroup> + <section name="webSocket" overrideModeDefault="Deny" /> + </sectionGroup> + </configSections> + + <configProtectedData> + <providers> + <add name="IISWASOnlyRsaProvider" type="" description="Uses RsaCryptoServiceProvider to encrypt and decrypt" keyContainerName="iisWasKey" cspProviderName="" useMachineContainer="true" useOAEP="false" /> + <add name="AesProvider" type="Microsoft.ApplicationHost.AesProtectedConfigurationProvider" description="Uses an AES session key to encrypt and decrypt" keyContainerName="iisConfigurationKey" cspProviderName="" useOAEP="false" useMachineContainer="true" sessionKey="AQIAAA5mAAAApAAA/HKxkz6alrlAPez0IUgujj/6k3WxCDriHp6jvpv3yEZmo7h6SMzGLxo4mTrIQVHSkB7tmElHKfUFTzE2BWF7nFWHY6Z6qmGBauFzwJMwESjril7Gjz69RBFH259HQ6aRDq9Xfx7U7H4HtdmnKNqGjgl/hwPQBGeIlWiDh+sYv3vKB0QU971tjX6H2B+9armlnC8UOuA6JYMDMI/VLLL16sng0fWAy5JYe0YVABVjiAWDW264RZW9Tr1Oax4qHZKg+SdjULxeOc2YmpX+d0yeITo1HkPF1hN1gHpIPIUDo05ilHUNfR3OkjVCIQK4cFKCq1s8NH+y+13MxUC4Fn1AlQ==" /> + <add name="IISWASOnlyAesProvider" type="Microsoft.ApplicationHost.AesProtectedConfigurationProvider" description="Uses an AES session key to encrypt and decrypt" keyContainerName="iisWasKey" cspProviderName="" useOAEP="false" useMachineContainer="true" sessionKey="AQIAAA5mAAAApAAALmU8lTC+v2qtfQiiiquvvLpUQqKLEXs+jSKoWCM/uPhyB++k4dwug19mGidNK5FYiWK2KYE1yhjVJcbp12E98Q0R2nT7eBiCMY2JairxQ591rqABK7keGaIjwH7PwGzSpILl3RJ4YFvJ/7ZXEJxeDZIjW8ZxWVXx+/VyHs9U3WguLEkgMUX3jrxJi8LouxaIVPJAv/YQ1ZCWs8zImitxX/C/7o7yaIxznfsN5nGQzQfpUDPeby99aw2zPVTtZI2LaWIBON8guABvZ6JtJVDWmfdK6sodbnwdZkr6/Z2rfvamT1dC1SpQrGG7ulR/f9/GXvCaW10ZVKxekBF/CYlNMg==" /> + </providers> + </configProtectedData> + + <system.applicationHost> + + <applicationPools> + <add name="Clr4IntegratedAppPool" managedRuntimeVersion="v4.0" managedPipelineMode="Integrated" CLRConfigFile="%IIS_USER_HOME%\config\aspnet.config" autoStart="true" /> + <add name="Clr4ClassicAppPool" managedRuntimeVersion="v4.0" managedPipelineMode="Classic" CLRConfigFile="%IIS_USER_HOME%\config\aspnet.config" autoStart="true" /> + <add name="Clr2IntegratedAppPool" managedRuntimeVersion="v2.0" managedPipelineMode="Integrated" CLRConfigFile="%IIS_USER_HOME%\config\aspnet.config" autoStart="true" /> + <add name="Clr2ClassicAppPool" managedRuntimeVersion="v2.0" managedPipelineMode="Classic" CLRConfigFile="%IIS_USER_HOME%\config\aspnet.config" autoStart="true" /> + <add name="UnmanagedClassicAppPool" managedRuntimeVersion="" managedPipelineMode="Classic" autoStart="true" /> + <applicationPoolDefaults managedRuntimeVersion="v4.0"> + <processModel loadUserProfile="true" setProfileEnvironment="false" /> + </applicationPoolDefaults> + </applicationPools> + + <!-- + + The <listenerAdapters> section defines the protocols with which the + Windows Process Activation Service (WAS) binds. + + --> + <listenerAdapters> + <add name="http" /> + </listenerAdapters> + + <sites> + <site name="WebSite1" id="1" serverAutoStart="true"> + <application path="/"> + <virtualDirectory path="/" physicalPath="%IIS_SITES_HOME%\WebSite1" /> + </application> + <bindings> + <binding protocol="http" bindingInformation=":8080:localhost" /> + </bindings> + </site> + <siteDefaults> + <!-- To enable logging, please change the below attribute "enabled" to "true" --> + <logFile logFormat="W3C" directory="%AppData%\Microsoft\IISExpressLogs" enabled="false"/> + <traceFailedRequestsLogging directory="%AppData%\Microsoft" enabled="false" maxLogFileSizeKB="1024" /> + </siteDefaults> + <applicationDefaults applicationPool="Clr4IntegratedAppPool" /> + <virtualDirectoryDefaults allowSubDirConfig="true" /> + </sites> + + <webLimits /> + + </system.applicationHost> + + <system.webServer> + + <serverRuntime /> + + <asp scriptErrorSentToBrowser="true"> + <cache diskTemplateCacheDirectory="%TEMP%\iisexpress\ASP Compiled Templates" /> + <limits /> + </asp> + + <caching enabled="true" enableKernelCache="true"> + </caching> + + <cgi /> + + <defaultDocument enabled="true"> + <files> + <add value="Default.htm" /> + <add value="Default.asp" /> + <add value="index.htm" /> + <add value="index.html" /> + <add value="iisstart.htm" /> + <add value="default.aspx" /> + </files> + </defaultDocument> + + <directoryBrowse enabled="false" /> + + <fastCgi /> + + <!-- + + The <globalModules> section defines all native-code modules. + To enable a module, specify it in the <modules> section. + + --> + <globalModules> + <add name="HttpLoggingModule" image="%IIS_BIN%\loghttp.dll" /> + <add name="UriCacheModule" image="%IIS_BIN%\cachuri.dll" /> + <add name="TokenCacheModule" image="%IIS_BIN%\cachtokn.dll" /> + <add name="DynamicCompressionModule" image="%IIS_BIN%\compdyn.dll" /> + <add name="StaticCompressionModule" image="%IIS_BIN%\compstat.dll" /> + <add name="DefaultDocumentModule" image="%IIS_BIN%\defdoc.dll" /> + <add name="DirectoryListingModule" image="%IIS_BIN%\dirlist.dll" /> + <add name="ProtocolSupportModule" image="%IIS_BIN%\protsup.dll" /> + <add name="HttpRedirectionModule" image="%IIS_BIN%\redirect.dll" /> + <add name="ServerSideIncludeModule" image="%IIS_BIN%\iis_ssi.dll" /> + <add name="StaticFileModule" image="%IIS_BIN%\static.dll" /> + <add name="AnonymousAuthenticationModule" image="%IIS_BIN%\authanon.dll" /> + <add name="CertificateMappingAuthenticationModule" image="%IIS_BIN%\authcert.dll" /> + <add name="UrlAuthorizationModule" image="%IIS_BIN%\urlauthz.dll" /> + <add name="BasicAuthenticationModule" image="%IIS_BIN%\authbas.dll" /> + <add name="WindowsAuthenticationModule" image="%IIS_BIN%\authsspi.dll" /> + <add name="IISCertificateMappingAuthenticationModule" image="%IIS_BIN%\authmap.dll" /> + <add name="IpRestrictionModule" image="%IIS_BIN%\iprestr.dll" /> + <add name="DynamicIpRestrictionModule" image="%IIS_BIN%\diprestr.dll" /> + <add name="RequestFilteringModule" image="%IIS_BIN%\modrqflt.dll" /> + <add name="CustomLoggingModule" image="%IIS_BIN%\logcust.dll" /> + <add name="CustomErrorModule" image="%IIS_BIN%\custerr.dll" /> + <add name="FailedRequestsTracingModule" image="%IIS_BIN%\iisfreb.dll" /> + <add name="RequestMonitorModule" image="%IIS_BIN%\iisreqs.dll" /> + <add name="IsapiModule" image="%IIS_BIN%\isapi.dll" /> + <add name="IsapiFilterModule" image="%IIS_BIN%\filter.dll" /> + <add name="CgiModule" image="%IIS_BIN%\cgi.dll" /> + <add name="FastCgiModule" image="%IIS_BIN%\iisfcgi.dll" /> +<!-- <add name="WebDAVModule" image="%IIS_BIN%\webdav.dll" /> --> + <add name="RewriteModule" image="%IIS_BIN%\rewrite.dll" /> + <add name="ConfigurationValidationModule" image="%IIS_BIN%\validcfg.dll" /> + <add name="WebSocketModule" image="%IIS_BIN%\iiswsock.dll" /> + <add name="WebMatrixSupportModule" image="%IIS_BIN%\webmatrixsup.dll" /> + <add name="ManagedEngine" image="%windir%\Microsoft.NET\Framework\v2.0.50727\webengine.dll" preCondition="integratedMode,runtimeVersionv2.0,bitness32" /> + <add name="ManagedEngine64" image="%windir%\Microsoft.NET\Framework64\v2.0.50727\webengine.dll" preCondition="integratedMode,runtimeVersionv2.0,bitness64" /> + <add name="ManagedEngineV4.0_32bit" image="%windir%\Microsoft.NET\Framework\v4.0.30319\webengine4.dll" preCondition="integratedMode,runtimeVersionv4.0,bitness32" /> + <add name="ManagedEngineV4.0_64bit" image="%windir%\Microsoft.NET\Framework64\v4.0.30319\webengine4.dll" preCondition="integratedMode,runtimeVersionv4.0,bitness64" /> + <add name="ApplicationInitializationModule" image="%IIS_BIN%\warmup.dll" /> + </globalModules> + + <httpCompression directory="%TEMP%"> + <scheme name="gzip" dll="%IIS_BIN%\gzip.dll" /> + <dynamicTypes> + <add mimeType="text/*" enabled="true" /> + <add mimeType="message/*" enabled="true" /> + <add mimeType="application/x-javascript" enabled="true" /> + <add mimeType="application/javascript" enabled="true" /> + <add mimeType="*/*" enabled="false" /> + </dynamicTypes> + <staticTypes> + <add mimeType="text/*" enabled="true" /> + <add mimeType="message/*" enabled="true" /> + <add mimeType="application/javascript" enabled="true" /> + <add mimeType="application/atom+xml" enabled="true" /> + <add mimeType="application/xaml+xml" enabled="true" /> + <add mimeType="image/svg+xml" enabled="true" /> + <add mimeType="*/*" enabled="false" /> + </staticTypes> + </httpCompression> + + <httpErrors lockAttributes="allowAbsolutePathsWhenDelegated,defaultPath"> + <error statusCode="401" prefixLanguageFilePath="%IIS_BIN%\custerr" path="401.htm" /> + <error statusCode="403" prefixLanguageFilePath="%IIS_BIN%\custerr" path="403.htm" /> + <error statusCode="404" prefixLanguageFilePath="%IIS_BIN%\custerr" path="404.htm" /> + <error statusCode="405" prefixLanguageFilePath="%IIS_BIN%\custerr" path="405.htm" /> + <error statusCode="406" prefixLanguageFilePath="%IIS_BIN%\custerr" path="406.htm" /> + <error statusCode="412" prefixLanguageFilePath="%IIS_BIN%\custerr" path="412.htm" /> + <error statusCode="500" prefixLanguageFilePath="%IIS_BIN%\custerr" path="500.htm" /> + <error statusCode="501" prefixLanguageFilePath="%IIS_BIN%\custerr" path="501.htm" /> + <error statusCode="502" prefixLanguageFilePath="%IIS_BIN%\custerr" path="502.htm" /> + </httpErrors> + + <httpLogging dontLog="false" /> + + <httpProtocol> + <customHeaders> + <clear /> + <add name="X-Powered-By" value="ASP.NET" /> + </customHeaders> + <redirectHeaders> + <clear /> + </redirectHeaders> + </httpProtocol> + + <httpRedirect enabled="false" /> + + <httpTracing /> + + <isapiFilters> + <filter name="ASP.Net_2.0.50727-64" path="%windir%\Microsoft.NET\Framework64\v2.0.50727\aspnet_filter.dll" enableCache="true" preCondition="bitness64,runtimeVersionv2.0" /> + <filter name="ASP.Net_2.0.50727.0" path="%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_filter.dll" enableCache="true" preCondition="bitness32,runtimeVersionv2.0" /> + <filter name="ASP.Net_2.0_for_v1.1" path="%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_filter.dll" enableCache="true" preCondition="runtimeVersionv1.1" /> + <filter name="ASP.Net_4.0_32bit" path="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_filter.dll" enableCache="true" preCondition="bitness32,runtimeVersionv4.0" /> + <filter name="ASP.Net_4.0_64bit" path="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_filter.dll" enableCache="true" preCondition="bitness64,runtimeVersionv4.0" /> + </isapiFilters> + + <odbcLogging /> + + <security> + + <access sslFlags="None" /> + + <applicationDependencies> + <application name="Active Server Pages" groupId="ASP" /> + </applicationDependencies> + + <authentication> + + <anonymousAuthentication enabled="true" userName="" /> + + <basicAuthentication enabled="false" /> + + <clientCertificateMappingAuthentication enabled="false" /> + + <digestAuthentication enabled="false" /> + + <iisClientCertificateMappingAuthentication enabled="false"> + </iisClientCertificateMappingAuthentication> + + <windowsAuthentication enabled="false"> + <providers> + <add value="Negotiate" /> + <add value="NTLM" /> + </providers> + </windowsAuthentication> + + </authentication> + + <authorization> + <add accessType="Allow" users="*" /> + </authorization> + + <ipSecurity allowUnlisted="true" /> + + <isapiCgiRestriction notListedIsapisAllowed="true" notListedCgisAllowed="true"> + <add path="%windir%\Microsoft.NET\Framework64\v4.0.30319\webengine4.dll" allowed="true" groupId="ASP.NET_v4.0" description="ASP.NET_v4.0" /> + <add path="%windir%\Microsoft.NET\Framework\v4.0.30319\webengine4.dll" allowed="true" groupId="ASP.NET_v4.0" description="ASP.NET_v4.0" /> + <add path="%windir%\Microsoft.NET\Framework64\v2.0.50727\aspnet_isapi.dll" allowed="true" groupId="ASP.NET v2.0.50727" description="ASP.NET v2.0.50727" /> + <add path="%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll" allowed="true" groupId="ASP.NET v2.0.50727" description="ASP.NET v2.0.50727" /> + </isapiCgiRestriction> + + <requestFiltering> + <fileExtensions allowUnlisted="true" applyToWebDAV="true"> + <add fileExtension=".asa" allowed="false" /> + <add fileExtension=".asax" allowed="false" /> + <add fileExtension=".ascx" allowed="false" /> + <add fileExtension=".master" allowed="false" /> + <add fileExtension=".skin" allowed="false" /> + <add fileExtension=".browser" allowed="false" /> + <add fileExtension=".sitemap" allowed="false" /> + <add fileExtension=".config" allowed="false" /> + <add fileExtension=".cs" allowed="false" /> + <add fileExtension=".csproj" allowed="false" /> + <add fileExtension=".vb" allowed="false" /> + <add fileExtension=".vbproj" allowed="false" /> + <add fileExtension=".webinfo" allowed="false" /> + <add fileExtension=".licx" allowed="false" /> + <add fileExtension=".resx" allowed="false" /> + <add fileExtension=".resources" allowed="false" /> + <add fileExtension=".mdb" allowed="false" /> + <add fileExtension=".vjsproj" allowed="false" /> + <add fileExtension=".java" allowed="false" /> + <add fileExtension=".jsl" allowed="false" /> + <add fileExtension=".ldb" allowed="false" /> + <add fileExtension=".dsdgm" allowed="false" /> + <add fileExtension=".ssdgm" allowed="false" /> + <add fileExtension=".lsad" allowed="false" /> + <add fileExtension=".ssmap" allowed="false" /> + <add fileExtension=".cd" allowed="false" /> + <add fileExtension=".dsprototype" allowed="false" /> + <add fileExtension=".lsaprototype" allowed="false" /> + <add fileExtension=".sdm" allowed="false" /> + <add fileExtension=".sdmDocument" allowed="false" /> + <add fileExtension=".mdf" allowed="false" /> + <add fileExtension=".ldf" allowed="false" /> + <add fileExtension=".ad" allowed="false" /> + <add fileExtension=".dd" allowed="false" /> + <add fileExtension=".ldd" allowed="false" /> + <add fileExtension=".sd" allowed="false" /> + <add fileExtension=".adprototype" allowed="false" /> + <add fileExtension=".lddprototype" allowed="false" /> + <add fileExtension=".exclude" allowed="false" /> + <add fileExtension=".refresh" allowed="false" /> + <add fileExtension=".compiled" allowed="false" /> + <add fileExtension=".msgx" allowed="false" /> + <add fileExtension=".vsdisco" allowed="false" /> + <add fileExtension=".rules" allowed="false" /> + </fileExtensions> + <verbs allowUnlisted="true" applyToWebDAV="true" /> + <hiddenSegments applyToWebDAV="true"> + <add segment="web.config" /> + <add segment="bin" /> + <add segment="App_code" /> + <add segment="App_GlobalResources" /> + <add segment="App_LocalResources" /> + <add segment="App_WebReferences" /> + <add segment="App_Data" /> + <add segment="App_Browsers" /> + </hiddenSegments> + </requestFiltering> + + </security> + + <serverSideInclude ssiExecDisable="false" /> + + <staticContent lockAttributes="isDocFooterFileName"> + <mimeMap fileExtension=".323" mimeType="text/h323" /> + <mimeMap fileExtension=".3g2" mimeType="video/3gpp2" /> + <mimeMap fileExtension=".3gp2" mimeType="video/3gpp2" /> + <mimeMap fileExtension=".3gp" mimeType="video/3gpp" /> + <mimeMap fileExtension=".3gpp" mimeType="video/3gpp" /> + <mimeMap fileExtension=".aac" mimeType="audio/aac" /> + <mimeMap fileExtension=".aaf" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".aca" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".accdb" mimeType="application/msaccess" /> + <mimeMap fileExtension=".accde" mimeType="application/msaccess" /> + <mimeMap fileExtension=".accdt" mimeType="application/msaccess" /> + <mimeMap fileExtension=".acx" mimeType="application/internet-property-stream" /> + <mimeMap fileExtension=".adt" mimeType="audio/vnd.dlna.adts" /> + <mimeMap fileExtension=".adts" mimeType="audio/vnd.dlna.adts" /> + <mimeMap fileExtension=".afm" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".ai" mimeType="application/postscript" /> + <mimeMap fileExtension=".aif" mimeType="audio/x-aiff" /> + <mimeMap fileExtension=".aifc" mimeType="audio/aiff" /> + <mimeMap fileExtension=".aiff" mimeType="audio/aiff" /> + <mimeMap fileExtension=".appcache" mimeType="text/cache-manifest" /> + <mimeMap fileExtension=".application" mimeType="application/x-ms-application" /> + <mimeMap fileExtension=".art" mimeType="image/x-jg" /> + <mimeMap fileExtension=".asd" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".asf" mimeType="video/x-ms-asf" /> + <mimeMap fileExtension=".asi" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".asm" mimeType="text/plain" /> + <mimeMap fileExtension=".asr" mimeType="video/x-ms-asf" /> + <mimeMap fileExtension=".asx" mimeType="video/x-ms-asf" /> + <mimeMap fileExtension=".atom" mimeType="application/atom+xml" /> + <mimeMap fileExtension=".au" mimeType="audio/basic" /> + <mimeMap fileExtension=".avi" mimeType="video/avi" /> + <mimeMap fileExtension=".axs" mimeType="application/olescript" /> + <mimeMap fileExtension=".bas" mimeType="text/plain" /> + <mimeMap fileExtension=".bcpio" mimeType="application/x-bcpio" /> + <mimeMap fileExtension=".bin" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".bmp" mimeType="image/bmp" /> + <mimeMap fileExtension=".c" mimeType="text/plain" /> + <mimeMap fileExtension=".cab" mimeType="application/vnd.ms-cab-compressed" /> + <mimeMap fileExtension=".calx" mimeType="application/vnd.ms-office.calx" /> + <mimeMap fileExtension=".cat" mimeType="application/vnd.ms-pki.seccat" /> + <mimeMap fileExtension=".cdf" mimeType="application/x-cdf" /> + <mimeMap fileExtension=".chm" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".class" mimeType="application/x-java-applet" /> + <mimeMap fileExtension=".clp" mimeType="application/x-msclip" /> + <mimeMap fileExtension=".cmx" mimeType="image/x-cmx" /> + <mimeMap fileExtension=".cnf" mimeType="text/plain" /> + <mimeMap fileExtension=".cod" mimeType="image/cis-cod" /> + <mimeMap fileExtension=".cpio" mimeType="application/x-cpio" /> + <mimeMap fileExtension=".cpp" mimeType="text/plain" /> + <mimeMap fileExtension=".crd" mimeType="application/x-mscardfile" /> + <mimeMap fileExtension=".crl" mimeType="application/pkix-crl" /> + <mimeMap fileExtension=".crt" mimeType="application/x-x509-ca-cert" /> + <mimeMap fileExtension=".csh" mimeType="application/x-csh" /> + <mimeMap fileExtension=".css" mimeType="text/css" /> + <mimeMap fileExtension=".csv" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".cur" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".dcr" mimeType="application/x-director" /> + <mimeMap fileExtension=".deploy" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".der" mimeType="application/x-x509-ca-cert" /> + <mimeMap fileExtension=".dib" mimeType="image/bmp" /> + <mimeMap fileExtension=".dir" mimeType="application/x-director" /> + <mimeMap fileExtension=".disco" mimeType="text/xml" /> + <mimeMap fileExtension=".dll" mimeType="application/x-msdownload" /> + <mimeMap fileExtension=".dll.config" mimeType="text/xml" /> + <mimeMap fileExtension=".dlm" mimeType="text/dlm" /> + <mimeMap fileExtension=".doc" mimeType="application/msword" /> + <mimeMap fileExtension=".docm" mimeType="application/vnd.ms-word.document.macroEnabled.12" /> + <mimeMap fileExtension=".docx" mimeType="application/vnd.openxmlformats-officedocument.wordprocessingml.document" /> + <mimeMap fileExtension=".dot" mimeType="application/msword" /> + <mimeMap fileExtension=".dotm" mimeType="application/vnd.ms-word.template.macroEnabled.12" /> + <mimeMap fileExtension=".dotx" mimeType="application/vnd.openxmlformats-officedocument.wordprocessingml.template" /> + <mimeMap fileExtension=".dsp" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".dtd" mimeType="text/xml" /> + <mimeMap fileExtension=".dvi" mimeType="application/x-dvi" /> + <mimeMap fileExtension=".dvr-ms" mimeType="video/x-ms-dvr" /> + <mimeMap fileExtension=".dwf" mimeType="drawing/x-dwf" /> + <mimeMap fileExtension=".dwp" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".dxr" mimeType="application/x-director" /> + <mimeMap fileExtension=".eml" mimeType="message/rfc822" /> + <mimeMap fileExtension=".emz" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".eot" mimeType="application/vnd.ms-fontobject" /> + <mimeMap fileExtension=".eps" mimeType="application/postscript" /> + <mimeMap fileExtension=".esd" mimeType="application/vnd.ms-cab-compressed" /> + <mimeMap fileExtension=".etx" mimeType="text/x-setext" /> + <mimeMap fileExtension=".evy" mimeType="application/envoy" /> + <mimeMap fileExtension=".exe" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".exe.config" mimeType="text/xml" /> + <mimeMap fileExtension=".fdf" mimeType="application/vnd.fdf" /> + <mimeMap fileExtension=".fif" mimeType="application/fractals" /> + <mimeMap fileExtension=".fla" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".flr" mimeType="x-world/x-vrml" /> + <mimeMap fileExtension=".flv" mimeType="video/x-flv" /> + <mimeMap fileExtension=".gif" mimeType="image/gif" /> + <mimeMap fileExtension=".glb" mimeType="model/gltf-binary" /> + <mimeMap fileExtension=".gtar" mimeType="application/x-gtar" /> + <mimeMap fileExtension=".gz" mimeType="application/x-gzip" /> + <mimeMap fileExtension=".h" mimeType="text/plain" /> + <mimeMap fileExtension=".hdf" mimeType="application/x-hdf" /> + <mimeMap fileExtension=".hdml" mimeType="text/x-hdml" /> + <mimeMap fileExtension=".hhc" mimeType="application/x-oleobject" /> + <mimeMap fileExtension=".hhk" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".hhp" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".hlp" mimeType="application/winhlp" /> + <mimeMap fileExtension=".hqx" mimeType="application/mac-binhex40" /> + <mimeMap fileExtension=".hta" mimeType="application/hta" /> + <mimeMap fileExtension=".htc" mimeType="text/x-component" /> + <mimeMap fileExtension=".htm" mimeType="text/html" /> + <mimeMap fileExtension=".html" mimeType="text/html" /> + <mimeMap fileExtension=".htt" mimeType="text/webviewhtml" /> + <mimeMap fileExtension=".hxt" mimeType="text/html" /> + <mimeMap fileExtension=".ico" mimeType="image/x-icon" /> + <mimeMap fileExtension=".ics" mimeType="text/calendar" /> + <mimeMap fileExtension=".ief" mimeType="image/ief" /> + <mimeMap fileExtension=".iii" mimeType="application/x-iphone" /> + <mimeMap fileExtension=".inf" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".ins" mimeType="application/x-internet-signup" /> + <mimeMap fileExtension=".isp" mimeType="application/x-internet-signup" /> + <mimeMap fileExtension=".IVF" mimeType="video/x-ivf" /> + <mimeMap fileExtension=".jar" mimeType="application/java-archive" /> + <mimeMap fileExtension=".java" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".jck" mimeType="application/liquidmotion" /> + <mimeMap fileExtension=".jcz" mimeType="application/liquidmotion" /> + <mimeMap fileExtension=".jfif" mimeType="image/pjpeg" /> + <mimeMap fileExtension=".jpb" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".jpe" mimeType="image/jpeg" /> + <mimeMap fileExtension=".jpeg" mimeType="image/jpeg" /> + <mimeMap fileExtension=".jpg" mimeType="image/jpeg" /> + <mimeMap fileExtension=".js" mimeType="application/javascript" /> + <mimeMap fileExtension=".json" mimeType="application/json" /> + <mimeMap fileExtension=".jsonld" mimeType="application/ld+json" /> + <mimeMap fileExtension=".jsx" mimeType="text/jscript" /> + <mimeMap fileExtension=".latex" mimeType="application/x-latex" /> + <mimeMap fileExtension=".less" mimeType="text/css" /> + <mimeMap fileExtension=".lit" mimeType="application/x-ms-reader" /> + <mimeMap fileExtension=".lpk" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".lsf" mimeType="video/x-la-asf" /> + <mimeMap fileExtension=".lsx" mimeType="video/x-la-asf" /> + <mimeMap fileExtension=".lzh" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".m13" mimeType="application/x-msmediaview" /> + <mimeMap fileExtension=".m14" mimeType="application/x-msmediaview" /> + <mimeMap fileExtension=".m1v" mimeType="video/mpeg" /> + <mimeMap fileExtension=".m2ts" mimeType="video/vnd.dlna.mpeg-tts" /> + <mimeMap fileExtension=".m3u" mimeType="audio/x-mpegurl" /> + <mimeMap fileExtension=".m4a" mimeType="audio/mp4" /> + <mimeMap fileExtension=".m4v" mimeType="video/mp4" /> + <mimeMap fileExtension=".man" mimeType="application/x-troff-man" /> + <mimeMap fileExtension=".manifest" mimeType="application/x-ms-manifest" /> + <mimeMap fileExtension=".map" mimeType="text/plain" /> + <mimeMap fileExtension=".mdb" mimeType="application/x-msaccess" /> + <mimeMap fileExtension=".mdp" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".me" mimeType="application/x-troff-me" /> + <mimeMap fileExtension=".mht" mimeType="message/rfc822" /> + <mimeMap fileExtension=".mhtml" mimeType="message/rfc822" /> + <mimeMap fileExtension=".mid" mimeType="audio/mid" /> + <mimeMap fileExtension=".midi" mimeType="audio/mid" /> + <mimeMap fileExtension=".mix" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".mmf" mimeType="application/x-smaf" /> + <mimeMap fileExtension=".mno" mimeType="text/xml" /> + <mimeMap fileExtension=".mny" mimeType="application/x-msmoney" /> + <mimeMap fileExtension=".mov" mimeType="video/quicktime" /> + <mimeMap fileExtension=".movie" mimeType="video/x-sgi-movie" /> + <mimeMap fileExtension=".mp2" mimeType="video/mpeg" /> + <mimeMap fileExtension=".mp3" mimeType="audio/mpeg" /> + <mimeMap fileExtension=".mp4" mimeType="video/mp4" /> + <mimeMap fileExtension=".mp4v" mimeType="video/mp4" /> + <mimeMap fileExtension=".mpa" mimeType="video/mpeg" /> + <mimeMap fileExtension=".mpe" mimeType="video/mpeg" /> + <mimeMap fileExtension=".mpeg" mimeType="video/mpeg" /> + <mimeMap fileExtension=".mpg" mimeType="video/mpeg" /> + <mimeMap fileExtension=".mpp" mimeType="application/vnd.ms-project" /> + <mimeMap fileExtension=".mpv2" mimeType="video/mpeg" /> + <mimeMap fileExtension=".ms" mimeType="application/x-troff-ms" /> + <mimeMap fileExtension=".msi" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".mso" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".mvb" mimeType="application/x-msmediaview" /> + <mimeMap fileExtension=".mvc" mimeType="application/x-miva-compiled" /> + <mimeMap fileExtension=".nc" mimeType="application/x-netcdf" /> + <mimeMap fileExtension=".nsc" mimeType="video/x-ms-asf" /> + <mimeMap fileExtension=".nws" mimeType="message/rfc822" /> + <mimeMap fileExtension=".ocx" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".oda" mimeType="application/oda" /> + <mimeMap fileExtension=".odc" mimeType="text/x-ms-odc" /> + <mimeMap fileExtension=".ods" mimeType="application/oleobject" /> + <mimeMap fileExtension=".oga" mimeType="audio/ogg" /> + <mimeMap fileExtension=".ogg" mimeType="video/ogg" /> + <mimeMap fileExtension=".ogv" mimeType="video/ogg" /> + <mimeMap fileExtension=".one" mimeType="application/onenote" /> + <mimeMap fileExtension=".onea" mimeType="application/onenote" /> + <mimeMap fileExtension=".onetoc" mimeType="application/onenote" /> + <mimeMap fileExtension=".onetoc2" mimeType="application/onenote" /> + <mimeMap fileExtension=".onetmp" mimeType="application/onenote" /> + <mimeMap fileExtension=".onepkg" mimeType="application/onenote" /> + <mimeMap fileExtension=".osdx" mimeType="application/opensearchdescription+xml" /> + <mimeMap fileExtension=".otf" mimeType="font/otf" /> + <mimeMap fileExtension=".p10" mimeType="application/pkcs10" /> + <mimeMap fileExtension=".p12" mimeType="application/x-pkcs12" /> + <mimeMap fileExtension=".p7b" mimeType="application/x-pkcs7-certificates" /> + <mimeMap fileExtension=".p7c" mimeType="application/pkcs7-mime" /> + <mimeMap fileExtension=".p7m" mimeType="application/pkcs7-mime" /> + <mimeMap fileExtension=".p7r" mimeType="application/x-pkcs7-certreqresp" /> + <mimeMap fileExtension=".p7s" mimeType="application/pkcs7-signature" /> + <mimeMap fileExtension=".pbm" mimeType="image/x-portable-bitmap" /> + <mimeMap fileExtension=".pcx" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".pcz" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".pdf" mimeType="application/pdf" /> + <mimeMap fileExtension=".pfb" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".pfm" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".pfx" mimeType="application/x-pkcs12" /> + <mimeMap fileExtension=".pgm" mimeType="image/x-portable-graymap" /> + <mimeMap fileExtension=".pko" mimeType="application/vnd.ms-pki.pko" /> + <mimeMap fileExtension=".pma" mimeType="application/x-perfmon" /> + <mimeMap fileExtension=".pmc" mimeType="application/x-perfmon" /> + <mimeMap fileExtension=".pml" mimeType="application/x-perfmon" /> + <mimeMap fileExtension=".pmr" mimeType="application/x-perfmon" /> + <mimeMap fileExtension=".pmw" mimeType="application/x-perfmon" /> + <mimeMap fileExtension=".png" mimeType="image/png" /> + <mimeMap fileExtension=".pnm" mimeType="image/x-portable-anymap" /> + <mimeMap fileExtension=".pnz" mimeType="image/png" /> + <mimeMap fileExtension=".pot" mimeType="application/vnd.ms-powerpoint" /> + <mimeMap fileExtension=".potm" mimeType="application/vnd.ms-powerpoint.template.macroEnabled.12" /> + <mimeMap fileExtension=".potx" mimeType="application/vnd.openxmlformats-officedocument.presentationml.template" /> + <mimeMap fileExtension=".ppam" mimeType="application/vnd.ms-powerpoint.addin.macroEnabled.12" /> + <mimeMap fileExtension=".ppm" mimeType="image/x-portable-pixmap" /> + <mimeMap fileExtension=".pps" mimeType="application/vnd.ms-powerpoint" /> + <mimeMap fileExtension=".ppsm" mimeType="application/vnd.ms-powerpoint.slideshow.macroEnabled.12" /> + <mimeMap fileExtension=".ppsx" mimeType="application/vnd.openxmlformats-officedocument.presentationml.slideshow" /> + <mimeMap fileExtension=".ppt" mimeType="application/vnd.ms-powerpoint" /> + <mimeMap fileExtension=".pptm" mimeType="application/vnd.ms-powerpoint.presentation.macroEnabled.12" /> + <mimeMap fileExtension=".pptx" mimeType="application/vnd.openxmlformats-officedocument.presentationml.presentation" /> + <mimeMap fileExtension=".prf" mimeType="application/pics-rules" /> + <mimeMap fileExtension=".prm" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".prx" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".ps" mimeType="application/postscript" /> + <mimeMap fileExtension=".psd" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".psm" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".psp" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".pub" mimeType="application/x-mspublisher" /> + <mimeMap fileExtension=".qt" mimeType="video/quicktime" /> + <mimeMap fileExtension=".qtl" mimeType="application/x-quicktimeplayer" /> + <mimeMap fileExtension=".qxd" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".ra" mimeType="audio/x-pn-realaudio" /> + <mimeMap fileExtension=".ram" mimeType="audio/x-pn-realaudio" /> + <mimeMap fileExtension=".rar" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".ras" mimeType="image/x-cmu-raster" /> + <mimeMap fileExtension=".rf" mimeType="image/vnd.rn-realflash" /> + <mimeMap fileExtension=".rgb" mimeType="image/x-rgb" /> + <mimeMap fileExtension=".rm" mimeType="application/vnd.rn-realmedia" /> + <mimeMap fileExtension=".rmi" mimeType="audio/mid" /> + <mimeMap fileExtension=".roff" mimeType="application/x-troff" /> + <mimeMap fileExtension=".rpm" mimeType="audio/x-pn-realaudio-plugin" /> + <mimeMap fileExtension=".rtf" mimeType="application/rtf" /> + <mimeMap fileExtension=".rtx" mimeType="text/richtext" /> + <mimeMap fileExtension=".scd" mimeType="application/x-msschedule" /> + <mimeMap fileExtension=".sct" mimeType="text/scriptlet" /> + <mimeMap fileExtension=".sea" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".setpay" mimeType="application/set-payment-initiation" /> + <mimeMap fileExtension=".setreg" mimeType="application/set-registration-initiation" /> + <mimeMap fileExtension=".sgml" mimeType="text/sgml" /> + <mimeMap fileExtension=".sh" mimeType="application/x-sh" /> + <mimeMap fileExtension=".shar" mimeType="application/x-shar" /> + <mimeMap fileExtension=".sit" mimeType="application/x-stuffit" /> + <mimeMap fileExtension=".sldm" mimeType="application/vnd.ms-powerpoint.slide.macroEnabled.12" /> + <mimeMap fileExtension=".sldx" mimeType="application/vnd.openxmlformats-officedocument.presentationml.slide" /> + <mimeMap fileExtension=".smd" mimeType="audio/x-smd" /> + <mimeMap fileExtension=".smi" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".smx" mimeType="audio/x-smd" /> + <mimeMap fileExtension=".smz" mimeType="audio/x-smd" /> + <mimeMap fileExtension=".snd" mimeType="audio/basic" /> + <mimeMap fileExtension=".snp" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".spc" mimeType="application/x-pkcs7-certificates" /> + <mimeMap fileExtension=".spl" mimeType="application/futuresplash" /> + <mimeMap fileExtension=".spx" mimeType="audio/ogg" /> + <mimeMap fileExtension=".src" mimeType="application/x-wais-source" /> + <mimeMap fileExtension=".ssm" mimeType="application/streamingmedia" /> + <mimeMap fileExtension=".sst" mimeType="application/vnd.ms-pki.certstore" /> + <mimeMap fileExtension=".stl" mimeType="application/vnd.ms-pki.stl" /> + <mimeMap fileExtension=".sv4cpio" mimeType="application/x-sv4cpio" /> + <mimeMap fileExtension=".sv4crc" mimeType="application/x-sv4crc" /> + <mimeMap fileExtension=".svg" mimeType="image/svg+xml" /> + <mimeMap fileExtension=".svgz" mimeType="image/svg+xml" /> + <mimeMap fileExtension=".swf" mimeType="application/x-shockwave-flash" /> + <mimeMap fileExtension=".t" mimeType="application/x-troff" /> + <mimeMap fileExtension=".tar" mimeType="application/x-tar" /> + <mimeMap fileExtension=".tcl" mimeType="application/x-tcl" /> + <mimeMap fileExtension=".tex" mimeType="application/x-tex" /> + <mimeMap fileExtension=".texi" mimeType="application/x-texinfo" /> + <mimeMap fileExtension=".texinfo" mimeType="application/x-texinfo" /> + <mimeMap fileExtension=".tgz" mimeType="application/x-compressed" /> + <mimeMap fileExtension=".thmx" mimeType="application/vnd.ms-officetheme" /> + <mimeMap fileExtension=".thn" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".tif" mimeType="image/tiff" /> + <mimeMap fileExtension=".tiff" mimeType="image/tiff" /> + <mimeMap fileExtension=".toc" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".tr" mimeType="application/x-troff" /> + <mimeMap fileExtension=".trm" mimeType="application/x-msterminal" /> + <mimeMap fileExtension=".ts" mimeType="video/vnd.dlna.mpeg-tts" /> + <mimeMap fileExtension=".tsv" mimeType="text/tab-separated-values" /> + <mimeMap fileExtension=".ttf" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".tts" mimeType="video/vnd.dlna.mpeg-tts" /> + <mimeMap fileExtension=".txt" mimeType="text/plain" /> + <mimeMap fileExtension=".u32" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".uls" mimeType="text/iuls" /> + <mimeMap fileExtension=".ustar" mimeType="application/x-ustar" /> + <mimeMap fileExtension=".vbs" mimeType="text/vbscript" /> + <mimeMap fileExtension=".vcf" mimeType="text/x-vcard" /> + <mimeMap fileExtension=".vcs" mimeType="text/plain" /> + <mimeMap fileExtension=".vdx" mimeType="application/vnd.ms-visio.viewer" /> + <mimeMap fileExtension=".vml" mimeType="text/xml" /> + <mimeMap fileExtension=".vsd" mimeType="application/vnd.visio" /> + <mimeMap fileExtension=".vss" mimeType="application/vnd.visio" /> + <mimeMap fileExtension=".vst" mimeType="application/vnd.visio" /> + <mimeMap fileExtension=".vsto" mimeType="application/x-ms-vsto" /> + <mimeMap fileExtension=".vsw" mimeType="application/vnd.visio" /> + <mimeMap fileExtension=".vsx" mimeType="application/vnd.visio" /> + <mimeMap fileExtension=".vtx" mimeType="application/vnd.visio" /> + <mimeMap fileExtension=".wasm" mimeType="application/wasm" /> + <mimeMap fileExtension=".wav" mimeType="audio/wav" /> + <mimeMap fileExtension=".wax" mimeType="audio/x-ms-wax" /> + <mimeMap fileExtension=".wbmp" mimeType="image/vnd.wap.wbmp" /> + <mimeMap fileExtension=".wcm" mimeType="application/vnd.ms-works" /> + <mimeMap fileExtension=".wdb" mimeType="application/vnd.ms-works" /> + <mimeMap fileExtension=".webm" mimeType="video/webm" /> + <mimeMap fileExtension=".wks" mimeType="application/vnd.ms-works" /> + <mimeMap fileExtension=".wm" mimeType="video/x-ms-wm" /> + <mimeMap fileExtension=".wma" mimeType="audio/x-ms-wma" /> + <mimeMap fileExtension=".wmd" mimeType="application/x-ms-wmd" /> + <mimeMap fileExtension=".wmf" mimeType="application/x-msmetafile" /> + <mimeMap fileExtension=".wml" mimeType="text/vnd.wap.wml" /> + <mimeMap fileExtension=".wmlc" mimeType="application/vnd.wap.wmlc" /> + <mimeMap fileExtension=".wmls" mimeType="text/vnd.wap.wmlscript" /> + <mimeMap fileExtension=".wmlsc" mimeType="application/vnd.wap.wmlscriptc" /> + <mimeMap fileExtension=".wmp" mimeType="video/x-ms-wmp" /> + <mimeMap fileExtension=".wmv" mimeType="video/x-ms-wmv" /> + <mimeMap fileExtension=".wmx" mimeType="video/x-ms-wmx" /> + <mimeMap fileExtension=".wmz" mimeType="application/x-ms-wmz" /> + <mimeMap fileExtension=".woff" mimeType="font/x-woff" /> + <mimeMap fileExtension=".woff2" mimeType="application/font-woff2" /> + <mimeMap fileExtension=".wps" mimeType="application/vnd.ms-works" /> + <mimeMap fileExtension=".wri" mimeType="application/x-mswrite" /> + <mimeMap fileExtension=".wrl" mimeType="x-world/x-vrml" /> + <mimeMap fileExtension=".wrz" mimeType="x-world/x-vrml" /> + <mimeMap fileExtension=".wsdl" mimeType="text/xml" /> + <mimeMap fileExtension=".wtv" mimeType="video/x-ms-wtv" /> + <mimeMap fileExtension=".wvx" mimeType="video/x-ms-wvx" /> + <mimeMap fileExtension=".x" mimeType="application/directx" /> + <mimeMap fileExtension=".xaf" mimeType="x-world/x-vrml" /> + <mimeMap fileExtension=".xaml" mimeType="application/xaml+xml" /> + <mimeMap fileExtension=".xap" mimeType="application/x-silverlight-app" /> + <mimeMap fileExtension=".xbap" mimeType="application/x-ms-xbap" /> + <mimeMap fileExtension=".xbm" mimeType="image/x-xbitmap" /> + <mimeMap fileExtension=".xdr" mimeType="text/plain" /> + <mimeMap fileExtension=".xht" mimeType="application/xhtml+xml" /> + <mimeMap fileExtension=".xhtml" mimeType="application/xhtml+xml" /> + <mimeMap fileExtension=".xla" mimeType="application/vnd.ms-excel" /> + <mimeMap fileExtension=".xlam" mimeType="application/vnd.ms-excel.addin.macroEnabled.12" /> + <mimeMap fileExtension=".xlc" mimeType="application/vnd.ms-excel" /> + <mimeMap fileExtension=".xlm" mimeType="application/vnd.ms-excel" /> + <mimeMap fileExtension=".xls" mimeType="application/vnd.ms-excel" /> + <mimeMap fileExtension=".xlsb" mimeType="application/vnd.ms-excel.sheet.binary.macroEnabled.12" /> + <mimeMap fileExtension=".xlsm" mimeType="application/vnd.ms-excel.sheet.macroEnabled.12" /> + <mimeMap fileExtension=".xlsx" mimeType="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" /> + <mimeMap fileExtension=".xlt" mimeType="application/vnd.ms-excel" /> + <mimeMap fileExtension=".xltm" mimeType="application/vnd.ms-excel.template.macroEnabled.12" /> + <mimeMap fileExtension=".xltx" mimeType="application/vnd.openxmlformats-officedocument.spreadsheetml.template" /> + <mimeMap fileExtension=".xlw" mimeType="application/vnd.ms-excel" /> + <mimeMap fileExtension=".xml" mimeType="text/xml" /> + <mimeMap fileExtension=".xof" mimeType="x-world/x-vrml" /> + <mimeMap fileExtension=".xpm" mimeType="image/x-xpixmap" /> + <mimeMap fileExtension=".xps" mimeType="application/vnd.ms-xpsdocument" /> + <mimeMap fileExtension=".xsd" mimeType="text/xml" /> + <mimeMap fileExtension=".xsf" mimeType="text/xml" /> + <mimeMap fileExtension=".xsl" mimeType="text/xml" /> + <mimeMap fileExtension=".xslt" mimeType="text/xml" /> + <mimeMap fileExtension=".xsn" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".xtp" mimeType="application/octet-stream" /> + <mimeMap fileExtension=".xwd" mimeType="image/x-xwindowdump" /> + <mimeMap fileExtension=".z" mimeType="application/x-compress" /> + <mimeMap fileExtension=".zip" mimeType="application/x-zip-compressed" /> + </staticContent> + + <tracing> + + <traceFailedRequests> + <add path="*"> + <traceAreas> + <add provider="ASP" verbosity="Verbose" /> + <add provider="ASPNET" areas="Infrastructure,Module,Page,AppServices" verbosity="Verbose" /> + <add provider="ISAPI Extension" verbosity="Verbose" /> + <add provider="WWW Server" areas="Authentication,Security,Filter,StaticFile,CGI,Compression,Cache,RequestNotifications,Module,Rewrite,WebSocket" verbosity="Verbose" /> + </traceAreas> + <failureDefinitions statusCodes="200-999" /> + </add> + </traceFailedRequests> + + <traceProviderDefinitions> + <add name="WWW Server" guid="{3a2a4e84-4c21-4981-ae10-3fda0d9b0f83}"> + <areas> + <clear /> + <add name="Authentication" value="2" /> + <add name="Security" value="4" /> + <add name="Filter" value="8" /> + <add name="StaticFile" value="16" /> + <add name="CGI" value="32" /> + <add name="Compression" value="64" /> + <add name="Cache" value="128" /> + <add name="RequestNotifications" value="256" /> + <add name="Module" value="512" /> + <add name="Rewrite" value="1024" /> + <add name="FastCGI" value="4096" /> + <add name="WebSocket" value="16384" /> + </areas> + </add> + <add name="ASP" guid="{06b94d9a-b15e-456e-a4ef-37c984a2cb4b}"> + <areas> + <clear /> + </areas> + </add> + <add name="ISAPI Extension" guid="{a1c2040e-8840-4c31-ba11-9871031a19ea}"> + <areas> + <clear /> + </areas> + </add> + <add name="ASPNET" guid="{AFF081FE-0247-4275-9C4E-021F3DC1DA35}"> + <areas> + <add name="Infrastructure" value="1" /> + <add name="Module" value="2" /> + <add name="Page" value="4" /> + <add name="AppServices" value="8" /> + </areas> + </add> + </traceProviderDefinitions> + + </tracing> + + <urlCompression /> + + <validation /> + <webdav> + <globalSettings> + <propertyStores> + <add name="webdav_simple_prop" image="%IIS_BIN%\webdav_simple_prop.dll" image32="%IIS_BIN%\webdav_simple_prop.dll" /> + </propertyStores> + <lockStores> + <add name="webdav_simple_lock" image="%IIS_BIN%\webdav_simple_lock.dll" image32="%IIS_BIN%\webdav_simple_lock.dll" /> + </lockStores> + + </globalSettings> + <authoring> + <locks enabled="true" lockStore="webdav_simple_lock" /> + </authoring> + <authoringRules /> + </webdav> + <webSocket /> + <applicationInitialization /> + + </system.webServer> + <location path="" overrideMode="Allow"> + <system.webServer> + <modules> + <add name="IsapiFilterModule" lockItem="true" /> + <add name="BasicAuthenticationModule" lockItem="true" /> + <add name="IsapiModule" lockItem="true" /> + <add name="HttpLoggingModule" lockItem="true" /> + <add name="DynamicCompressionModule" lockItem="true" /> + <add name="StaticCompressionModule" lockItem="true" /> + <add name="DefaultDocumentModule" lockItem="true" /> + <add name="DirectoryListingModule" lockItem="true" /> + <add name="ProtocolSupportModule" lockItem="true" /> + <add name="HttpRedirectionModule" lockItem="true" /> + <add name="ServerSideIncludeModule" lockItem="true" /> + <add name="StaticFileModule" lockItem="true" /> + <add name="AnonymousAuthenticationModule" lockItem="true" /> + <add name="CertificateMappingAuthenticationModule" lockItem="true" /> + <add name="UrlAuthorizationModule" lockItem="true" /> + <add name="WindowsAuthenticationModule" lockItem="true" /> + <add name="IISCertificateMappingAuthenticationModule" lockItem="true" /> + <add name="WebMatrixSupportModule" lockItem="true" /> + <add name="IpRestrictionModule" lockItem="true" /> + <add name="DynamicIpRestrictionModule" lockItem="true" /> + <add name="RequestFilteringModule" lockItem="true" /> + <add name="CustomLoggingModule" lockItem="true" /> + <add name="CustomErrorModule" lockItem="true" /> + <add name="FailedRequestsTracingModule" lockItem="true" /> + <add name="CgiModule" lockItem="true" /> + <add name="FastCgiModule" lockItem="true" /> +<!-- <add name="WebDAVModule" /> --> + <add name="RewriteModule" /> + <add name="OutputCache" type="System.Web.Caching.OutputCacheModule" preCondition="managedHandler" /> + <add name="Session" type="System.Web.SessionState.SessionStateModule" preCondition="managedHandler" /> + <add name="WindowsAuthentication" type="System.Web.Security.WindowsAuthenticationModule" preCondition="managedHandler" /> + <add name="FormsAuthentication" type="System.Web.Security.FormsAuthenticationModule" preCondition="managedHandler" /> + <add name="DefaultAuthentication" type="System.Web.Security.DefaultAuthenticationModule" preCondition="managedHandler" /> + <add name="RoleManager" type="System.Web.Security.RoleManagerModule" preCondition="managedHandler" /> + <add name="UrlAuthorization" type="System.Web.Security.UrlAuthorizationModule" preCondition="managedHandler" /> + <add name="FileAuthorization" type="System.Web.Security.FileAuthorizationModule" preCondition="managedHandler" /> + <add name="AnonymousIdentification" type="System.Web.Security.AnonymousIdentificationModule" preCondition="managedHandler" /> + <add name="Profile" type="System.Web.Profile.ProfileModule" preCondition="managedHandler" /> + <add name="UrlMappingsModule" type="System.Web.UrlMappingsModule" preCondition="managedHandler" /> + <add name="ApplicationInitializationModule" lockItem="true" /> + <add name="WebSocketModule" lockItem="true" /> + <add name="ServiceModel-4.0" type="System.ServiceModel.Activation.ServiceHttpModule,System.ServiceModel.Activation,Version=4.0.0.0,Culture=neutral,PublicKeyToken=31bf3856ad364e35" preCondition="managedHandler,runtimeVersionv4.0" /> + <add name="ConfigurationValidationModule" lockItem="true" /> + <add name="UrlRoutingModule-4.0" type="System.Web.Routing.UrlRoutingModule" preCondition="managedHandler,runtimeVersionv4.0" /> + <add name="ScriptModule-4.0" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" preCondition="managedHandler,runtimeVersionv4.0" /> + <add name="ServiceModel" type="System.ServiceModel.Activation.HttpModule, System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" preCondition="managedHandler,runtimeVersionv2.0" /> + </modules> + <handlers accessPolicy="Read, Script"> +<!-- <add name="WebDAV" path="*" verb="PROPFIND,PROPPATCH,MKCOL,PUT,COPY,DELETE,MOVE,LOCK,UNLOCK" modules="WebDAVModule" resourceType="Unspecified" requireAccess="None" /> --> + <add name="AXD-ISAPI-4.0_64bit" path="*.axd" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness64" responseBufferLimit="0" /> + <add name="PageHandlerFactory-ISAPI-4.0_64bit" path="*.aspx" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness64" responseBufferLimit="0" /> + <add name="SimpleHandlerFactory-ISAPI-4.0_64bit" path="*.ashx" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness64" responseBufferLimit="0" /> + <add name="WebServiceHandlerFactory-ISAPI-4.0_64bit" path="*.asmx" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness64" responseBufferLimit="0" /> + <add name="HttpRemotingHandlerFactory-rem-ISAPI-4.0_64bit" path="*.rem" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness64" responseBufferLimit="0" /> + <add name="HttpRemotingHandlerFactory-soap-ISAPI-4.0_64bit" path="*.soap" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness64" responseBufferLimit="0" /> + <add name="svc-ISAPI-4.0_64bit" path="*.svc" verb="*" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness64" /> + <add name="rules-ISAPI-4.0_64bit" path="*.rules" verb="*" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness64" /> + <add name="xoml-ISAPI-4.0_64bit" path="*.xoml" verb="*" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness64" /> + <add name="xamlx-ISAPI-4.0_64bit" path="*.xamlx" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness64" /> + <add name="aspq-ISAPI-4.0_64bit" path="*.aspq" verb="*" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness64" responseBufferLimit="0" /> + <add name="cshtm-ISAPI-4.0_64bit" path="*.cshtm" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness64" responseBufferLimit="0" /> + <add name="cshtml-ISAPI-4.0_64bit" path="*.cshtml" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness64" responseBufferLimit="0" /> + <add name="vbhtm-ISAPI-4.0_64bit" path="*.vbhtm" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness64" responseBufferLimit="0" /> + <add name="vbhtml-ISAPI-4.0_64bit" path="*.vbhtml" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness64" responseBufferLimit="0" /> + <add name="svc-Integrated" path="*.svc" verb="*" type="System.ServiceModel.Activation.HttpHandler, System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" preCondition="integratedMode,runtimeVersionv2.0" /> + <add name="svc-ISAPI-2.0" path="*.svc" verb="*" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv2.0,bitness32" /> + <add name="xoml-Integrated" path="*.xoml" verb="*" type="System.ServiceModel.Activation.HttpHandler, System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" preCondition="integratedMode,runtimeVersionv2.0" /> + <add name="xoml-ISAPI-2.0" path="*.xoml" verb="*" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv2.0,bitness32" /> + <add name="rules-Integrated" path="*.rules" verb="*" type="System.ServiceModel.Activation.HttpHandler, System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" preCondition="integratedMode,runtimeVersionv2.0" /> + <add name="rules-ISAPI-2.0" path="*.rules" verb="*" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv2.0,bitness32" /> + <add name="AXD-ISAPI-4.0_32bit" path="*.axd" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" /> + <add name="PageHandlerFactory-ISAPI-4.0_32bit" path="*.aspx" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" /> + <add name="SimpleHandlerFactory-ISAPI-4.0_32bit" path="*.ashx" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" /> + <add name="WebServiceHandlerFactory-ISAPI-4.0_32bit" path="*.asmx" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" /> + <add name="HttpRemotingHandlerFactory-rem-ISAPI-4.0_32bit" path="*.rem" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" /> + <add name="HttpRemotingHandlerFactory-soap-ISAPI-4.0_32bit" path="*.soap" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" /> + <add name="svc-ISAPI-4.0_32bit" path="*.svc" verb="*" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" /> + <add name="rules-ISAPI-4.0_32bit" path="*.rules" verb="*" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" /> + <add name="xoml-ISAPI-4.0_32bit" path="*.xoml" verb="*" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" /> + <add name="xamlx-ISAPI-4.0_32bit" path="*.xamlx" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" /> + <add name="aspq-ISAPI-4.0_32bit" path="*.aspq" verb="*" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" /> + <add name="cshtm-ISAPI-4.0_32bit" path="*.cshtm" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" /> + <add name="cshtml-ISAPI-4.0_32bit" path="*.cshtml" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" /> + <add name="vbhtm-ISAPI-4.0_32bit" path="*.vbhtm" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" /> + <add name="vbhtml-ISAPI-4.0_32bit" path="*.vbhtml" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" /> + <add name="TraceHandler-Integrated-4.0" path="trace.axd" verb="GET,HEAD,POST,DEBUG" type="System.Web.Handlers.TraceHandler" preCondition="integratedMode,runtimeVersionv4.0" /> + <add name="WebAdminHandler-Integrated-4.0" path="WebAdmin.axd" verb="GET,DEBUG" type="System.Web.Handlers.WebAdminHandler" preCondition="integratedMode,runtimeVersionv4.0" /> + <add name="AssemblyResourceLoader-Integrated-4.0" path="WebResource.axd" verb="GET,DEBUG" type="System.Web.Handlers.AssemblyResourceLoader" preCondition="integratedMode,runtimeVersionv4.0" /> + <add name="PageHandlerFactory-Integrated-4.0" path="*.aspx" verb="GET,HEAD,POST,DEBUG" type="System.Web.UI.PageHandlerFactory" preCondition="integratedMode,runtimeVersionv4.0" /> + <add name="SimpleHandlerFactory-Integrated-4.0" path="*.ashx" verb="GET,HEAD,POST,DEBUG" type="System.Web.UI.SimpleHandlerFactory" preCondition="integratedMode,runtimeVersionv4.0" /> + <add name="WebServiceHandlerFactory-Integrated-4.0" path="*.asmx" verb="GET,HEAD,POST,DEBUG" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" preCondition="integratedMode,runtimeVersionv4.0" /> + <add name="HttpRemotingHandlerFactory-rem-Integrated-4.0" path="*.rem" verb="GET,HEAD,POST,DEBUG" type="System.Runtime.Remoting.Channels.Http.HttpRemotingHandlerFactory, System.Runtime.Remoting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" preCondition="integratedMode,runtimeVersionv4.0" /> + <add name="HttpRemotingHandlerFactory-soap-Integrated-4.0" path="*.soap" verb="GET,HEAD,POST,DEBUG" type="System.Runtime.Remoting.Channels.Http.HttpRemotingHandlerFactory, System.Runtime.Remoting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" preCondition="integratedMode,runtimeVersionv4.0" /> + <add name="svc-Integrated-4.0" path="*.svc" verb="*" type="System.ServiceModel.Activation.ServiceHttpHandlerFactory, System.ServiceModel.Activation, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" preCondition="integratedMode,runtimeVersionv4.0" /> + <add name="rules-Integrated-4.0" path="*.rules" verb="*" type="System.ServiceModel.Activation.ServiceHttpHandlerFactory, System.ServiceModel.Activation, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" preCondition="integratedMode,runtimeVersionv4.0" /> + <add name="xoml-Integrated-4.0" path="*.xoml" verb="*" type="System.ServiceModel.Activation.ServiceHttpHandlerFactory, System.ServiceModel.Activation, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" preCondition="integratedMode,runtimeVersionv4.0" /> + <add name="xamlx-Integrated-4.0" path="*.xamlx" verb="GET,HEAD,POST,DEBUG" type="System.Xaml.Hosting.XamlHttpHandlerFactory, System.Xaml.Hosting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" preCondition="integratedMode,runtimeVersionv4.0" /> + <add name="aspq-Integrated-4.0" path="*.aspq" verb="GET,HEAD,POST,DEBUG" type="System.Web.HttpForbiddenHandler" preCondition="integratedMode,runtimeVersionv4.0" /> + <add name="cshtm-Integrated-4.0" path="*.cshtm" verb="GET,HEAD,POST,DEBUG" type="System.Web.HttpForbiddenHandler" preCondition="integratedMode,runtimeVersionv4.0" /> + <add name="cshtml-Integrated-4.0" path="*.cshtml" verb="GET,HEAD,POST,DEBUG" type="System.Web.HttpForbiddenHandler" preCondition="integratedMode,runtimeVersionv4.0" /> + <add name="vbhtm-Integrated-4.0" path="*.vbhtm" verb="GET,HEAD,POST,DEBUG" type="System.Web.HttpForbiddenHandler" preCondition="integratedMode,runtimeVersionv4.0" /> + <add name="vbhtml-Integrated-4.0" path="*.vbhtml" verb="GET,HEAD,POST,DEBUG" type="System.Web.HttpForbiddenHandler" preCondition="integratedMode,runtimeVersionv4.0" /> + <add name="ScriptHandlerFactoryAppServices-Integrated-4.0" path="*_AppService.axd" verb="*" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" preCondition="integratedMode,runtimeVersionv4.0" /> + <add name="ScriptResourceIntegrated-4.0" path="*ScriptResource.axd" verb="GET,HEAD" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" preCondition="integratedMode,runtimeVersionv4.0" /> + <add name="ASPClassic" path="*.asp" verb="GET,HEAD,POST" modules="IsapiModule" scriptProcessor="%IIS_BIN%\asp.dll" resourceType="File" /> + <add name="SecurityCertificate" path="*.cer" verb="GET,HEAD,POST" modules="IsapiModule" scriptProcessor="%IIS_BIN%\asp.dll" resourceType="File" /> + <add name="ISAPI-dll" path="*.dll" verb="*" modules="IsapiModule" resourceType="File" requireAccess="Execute" allowPathInfo="true" /> + <add name="TraceHandler-Integrated" path="trace.axd" verb="GET,HEAD,POST,DEBUG" type="System.Web.Handlers.TraceHandler" preCondition="integratedMode,runtimeVersionv2.0" /> + <add name="WebAdminHandler-Integrated" path="WebAdmin.axd" verb="GET,DEBUG" type="System.Web.Handlers.WebAdminHandler" preCondition="integratedMode,runtimeVersionv2.0" /> + <add name="AssemblyResourceLoader-Integrated" path="WebResource.axd" verb="GET,DEBUG" type="System.Web.Handlers.AssemblyResourceLoader" preCondition="integratedMode,runtimeVersionv2.0" /> + <add name="PageHandlerFactory-Integrated" path="*.aspx" verb="GET,HEAD,POST,DEBUG" type="System.Web.UI.PageHandlerFactory" preCondition="integratedMode,runtimeVersionv2.0" /> + <add name="SimpleHandlerFactory-Integrated" path="*.ashx" verb="GET,HEAD,POST,DEBUG" type="System.Web.UI.SimpleHandlerFactory" preCondition="integratedMode,runtimeVersionv2.0" /> + <add name="WebServiceHandlerFactory-Integrated" path="*.asmx" verb="GET,HEAD,POST,DEBUG" type="System.Web.Services.Protocols.WebServiceHandlerFactory,System.Web.Services,Version=2.0.0.0,Culture=neutral,PublicKeyToken=b03f5f7f11d50a3a" preCondition="integratedMode,runtimeVersionv2.0" /> + <add name="HttpRemotingHandlerFactory-rem-Integrated" path="*.rem" verb="GET,HEAD,POST,DEBUG" type="System.Runtime.Remoting.Channels.Http.HttpRemotingHandlerFactory,System.Runtime.Remoting,Version=2.0.0.0,Culture=neutral,PublicKeyToken=b77a5c561934e089" preCondition="integratedMode,runtimeVersionv2.0" /> + <add name="HttpRemotingHandlerFactory-soap-Integrated" path="*.soap" verb="GET,HEAD,POST,DEBUG" type="System.Runtime.Remoting.Channels.Http.HttpRemotingHandlerFactory,System.Runtime.Remoting,Version=2.0.0.0,Culture=neutral,PublicKeyToken=b77a5c561934e089" preCondition="integratedMode,runtimeVersionv2.0" /> + <add name="AXD-ISAPI-2.0" path="*.axd" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv2.0,bitness32" responseBufferLimit="0" /> + <add name="PageHandlerFactory-ISAPI-2.0" path="*.aspx" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv2.0,bitness32" responseBufferLimit="0" /> + <add name="SimpleHandlerFactory-ISAPI-2.0" path="*.ashx" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv2.0,bitness32" responseBufferLimit="0" /> + <add name="WebServiceHandlerFactory-ISAPI-2.0" path="*.asmx" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv2.0,bitness32" responseBufferLimit="0" /> + <add name="HttpRemotingHandlerFactory-rem-ISAPI-2.0" path="*.rem" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv2.0,bitness32" responseBufferLimit="0" /> + <add name="HttpRemotingHandlerFactory-soap-ISAPI-2.0" path="*.soap" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv2.0,bitness32" responseBufferLimit="0" /> + <add name="svc-ISAPI-2.0-64" path="*.svc" verb="*" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v2.0.50727\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv2.0,bitness64" /> + <add name="AXD-ISAPI-2.0-64" path="*.axd" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v2.0.50727\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv2.0,bitness64" responseBufferLimit="0" /> + <add name="PageHandlerFactory-ISAPI-2.0-64" path="*.aspx" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v2.0.50727\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv2.0,bitness64" responseBufferLimit="0" /> + <add name="SimpleHandlerFactory-ISAPI-2.0-64" path="*.ashx" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v2.0.50727\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv2.0,bitness64" responseBufferLimit="0" /> + <add name="WebServiceHandlerFactory-ISAPI-2.0-64" path="*.asmx" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v2.0.50727\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv2.0,bitness64" responseBufferLimit="0" /> + <add name="HttpRemotingHandlerFactory-rem-ISAPI-2.0-64" path="*.rem" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v2.0.50727\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv2.0,bitness64" responseBufferLimit="0" /> + <add name="HttpRemotingHandlerFactory-soap-ISAPI-2.0-64" path="*.soap" verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v2.0.50727\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv2.0,bitness64" responseBufferLimit="0" /> + <add name="rules-64-ISAPI-2.0" path="*.rules" verb="*" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v2.0.50727\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv2.0,bitness64" /> + <add name="xoml-64-ISAPI-2.0" path="*.xoml" verb="*" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v2.0.50727\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv2.0,bitness64" /> + <add name="CGI-exe" path="*.exe" verb="*" modules="CgiModule" resourceType="File" requireAccess="Execute" allowPathInfo="true" /> + <add name="SSINC-stm" path="*.stm" verb="GET,HEAD,POST" modules="ServerSideIncludeModule" resourceType="File" /> + <add name="SSINC-shtm" path="*.shtm" verb="GET,HEAD,POST" modules="ServerSideIncludeModule" resourceType="File" /> + <add name="SSINC-shtml" path="*.shtml" verb="GET,HEAD,POST" modules="ServerSideIncludeModule" resourceType="File" /> + <add name="TRACEVerbHandler" path="*" verb="TRACE" modules="ProtocolSupportModule" requireAccess="None" /> + <add name="OPTIONSVerbHandler" path="*" verb="OPTIONS" modules="ProtocolSupportModule" requireAccess="None" /> + <add name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" path="*." verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness32" responseBufferLimit="0" /> + <add name="ExtensionlessUrlHandler-ISAPI-4.0_64bit" path="*." verb="GET,HEAD,POST,DEBUG" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_isapi.dll" preCondition="classicMode,runtimeVersionv4.0,bitness64" responseBufferLimit="0" /> + <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="GET,HEAD,POST,DEBUG" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" responseBufferLimit="0" /> + <add name="StaticFile" path="*" verb="*" modules="StaticFileModule,DefaultDocumentModule,DirectoryListingModule" resourceType="Either" requireAccess="Read" /> + </handlers> + </system.webServer> + </location> +</configuration> diff --git a/DrinksMachineWebsite/.vs/DrinksMachineWebsite/v17/.futdcache.v2 b/DrinksMachineWebsite/.vs/DrinksMachineWebsite/v17/.futdcache.v2 Binary files differnew file mode 100644 index 0000000..727960b --- /dev/null +++ b/DrinksMachineWebsite/.vs/DrinksMachineWebsite/v17/.futdcache.v2 diff --git a/DrinksMachineWebsite/.vs/DrinksMachineWebsite/v17/.suo b/DrinksMachineWebsite/.vs/DrinksMachineWebsite/v17/.suo Binary files differindex cb6c930..4668533 100644 --- a/DrinksMachineWebsite/.vs/DrinksMachineWebsite/v17/.suo +++ b/DrinksMachineWebsite/.vs/DrinksMachineWebsite/v17/.suo diff --git a/DrinksMachineWebsite/.vs/DrinksMachineWebsite/v17/DocumentLayout.backup.json b/DrinksMachineWebsite/.vs/DrinksMachineWebsite/v17/DocumentLayout.backup.json new file mode 100644 index 0000000..d706f93 --- /dev/null +++ b/DrinksMachineWebsite/.vs/DrinksMachineWebsite/v17/DocumentLayout.backup.json @@ -0,0 +1,255 @@ +{ + "Version": 1, + "WorkspaceRootPath": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\", + "Documents": [ + { + "AbsoluteMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|c:\\users\\mgj32\\documents\\github\\drinksmachine\\drinksmachinewebsite\\pages\\counter.razor||{40D31677-CBC0-4297-A9EF-89D907823A98}", + "RelativeMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|solutionrelative:pages\\counter.razor||{40D31677-CBC0-4297-A9EF-89D907823A98}" + }, + { + "AbsoluteMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|c:\\users\\mgj32\\documents\\github\\drinksmachine\\drinksmachinewebsite\\pages\\fetchdata.razor||{40D31677-CBC0-4297-A9EF-89D907823A98}", + "RelativeMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|solutionrelative:pages\\fetchdata.razor||{40D31677-CBC0-4297-A9EF-89D907823A98}" + }, + { + "AbsoluteMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|c:\\users\\mgj32\\documents\\github\\drinksmachine\\drinksmachinewebsite\\data\\weatherforecastservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "RelativeMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|solutionrelative:data\\weatherforecastservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" + }, + { + "AbsoluteMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|c:\\users\\mgj32\\documents\\github\\drinksmachine\\drinksmachinewebsite\\data\\weatherforecast.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "RelativeMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|solutionrelative:data\\weatherforecast.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" + }, + { + "AbsoluteMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|c:\\users\\mgj32\\documents\\github\\drinksmachine\\drinksmachinewebsite\\pages\\_host.cshtml||{40D31677-CBC0-4297-A9EF-89D907823A98}", + "RelativeMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|solutionrelative:pages\\_host.cshtml||{40D31677-CBC0-4297-A9EF-89D907823A98}" + }, + { + "AbsoluteMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|c:\\users\\mgj32\\documents\\github\\drinksmachine\\drinksmachinewebsite\\data\\drinks.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "RelativeMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|solutionrelative:data\\drinks.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" + }, + { + "AbsoluteMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|c:\\users\\mgj32\\documents\\github\\drinksmachine\\drinksmachinewebsite\\data\\alcoholandamount.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "RelativeMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|solutionrelative:data\\alcoholandamount.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" + }, + { + "AbsoluteMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|c:\\users\\mgj32\\documents\\github\\drinksmachine\\drinksmachinewebsite\\data\\alcohol.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "RelativeMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|solutionrelative:data\\alcohol.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" + }, + { + "AbsoluteMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|c:\\users\\mgj32\\documents\\github\\drinksmachine\\drinksmachinewebsite\\pages\\error.cshtml||{40D31677-CBC0-4297-A9EF-89D907823A98}", + "RelativeMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|solutionrelative:pages\\error.cshtml||{40D31677-CBC0-4297-A9EF-89D907823A98}" + }, + { + "AbsoluteMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|c:\\users\\mgj32\\documents\\github\\drinksmachine\\drinksmachinewebsite\\pages\\index.razor||{40D31677-CBC0-4297-A9EF-89D907823A98}", + "RelativeMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|solutionrelative:pages\\index.razor||{40D31677-CBC0-4297-A9EF-89D907823A98}" + }, + { + "AbsoluteMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|c:\\users\\mgj32\\documents\\github\\drinksmachine\\drinksmachinewebsite\\program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "RelativeMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|solutionrelative:program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" + }, + { + "AbsoluteMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|c:\\users\\mgj32\\documents\\github\\drinksmachine\\drinksmachinewebsite\\wwwroot\\css\\site.css||{A5401142-F49D-43DB-90B1-F57BA349E55C}", + "RelativeMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|solutionrelative:wwwroot\\css\\site.css||{A5401142-F49D-43DB-90B1-F57BA349E55C}" + }, + { + "AbsoluteMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|c:\\users\\mgj32\\documents\\github\\drinksmachine\\drinksmachinewebsite\\wwwroot\\css\\bootstrap\\bootstrap.min.css||{A5401142-F49D-43DB-90B1-F57BA349E55C}", + "RelativeMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|solutionrelative:wwwroot\\css\\bootstrap\\bootstrap.min.css||{A5401142-F49D-43DB-90B1-F57BA349E55C}" + }, + { + "AbsoluteMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|c:\\users\\mgj32\\documents\\github\\drinksmachine\\drinksmachinewebsite\\app.razor||{40D31677-CBC0-4297-A9EF-89D907823A98}", + "RelativeMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|solutionrelative:app.razor||{40D31677-CBC0-4297-A9EF-89D907823A98}" + } + ], + "DocumentGroupContainers": [ + { + "Orientation": 0, + "VerticalTabListWidth": 256, + "DocumentGroups": [ + { + "DockedWidth": 200, + "SelectedChildIndex": 8, + "Children": [ + { + "$type": "Document", + "DocumentIndex": 6, + "Title": "AlcoholAndAmount.cs", + "DocumentMoniker": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Data\\AlcoholAndAmount.cs", + "RelativeDocumentMoniker": "Data\\AlcoholAndAmount.cs", + "ToolTip": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Data\\AlcoholAndAmount.cs", + "RelativeToolTip": "Data\\AlcoholAndAmount.cs", + "ViewState": "AgIAAAAAAAAAAAAAAAAAAA0AAAAJAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", + "WhenOpened": "2024-11-30T19:44:23.897Z", + "EditorCaption": "" + }, + { + "$type": "Document", + "DocumentIndex": 7, + "Title": "Alcohol.cs", + "DocumentMoniker": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Data\\Alcohol.cs", + "RelativeDocumentMoniker": "Data\\Alcohol.cs", + "ToolTip": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Data\\Alcohol.cs", + "RelativeToolTip": "Data\\Alcohol.cs", + "ViewState": "AgIAAAAAAAAAAAAAAAAAAA0AAAAJAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", + "WhenOpened": "2024-11-30T19:44:11.13Z", + "EditorCaption": "" + }, + { + "$type": "Document", + "DocumentIndex": 5, + "Title": "Drinks.cs", + "DocumentMoniker": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Data\\Drinks.cs", + "RelativeDocumentMoniker": "Data\\Drinks.cs", + "ToolTip": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Data\\Drinks.cs", + "RelativeToolTip": "Data\\Drinks.cs", + "ViewState": "AgIAAAAAAAAAAAAAAAAAAAgAAABHAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", + "WhenOpened": "2024-11-30T19:40:41.177Z", + "EditorCaption": "" + }, + { + "$type": "Document", + "DocumentIndex": 2, + "Title": "WeatherForecastService.cs", + "DocumentMoniker": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Data\\WeatherForecastService.cs", + "RelativeDocumentMoniker": "Data\\WeatherForecastService.cs", + "ToolTip": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Data\\WeatherForecastService.cs", + "RelativeToolTip": "Data\\WeatherForecastService.cs", + "ViewState": "AgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", + "WhenOpened": "2023-10-14T15:39:59.923Z", + "EditorCaption": "" + }, + { + "$type": "Document", + "DocumentIndex": 3, + "Title": "WeatherForecast.cs", + "DocumentMoniker": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Data\\WeatherForecast.cs", + "RelativeDocumentMoniker": "Data\\WeatherForecast.cs", + "ToolTip": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Data\\WeatherForecast.cs", + "RelativeToolTip": "Data\\WeatherForecast.cs", + "ViewState": "AgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", + "WhenOpened": "2023-10-14T15:39:54.057Z", + "EditorCaption": "" + }, + { + "$type": "Document", + "DocumentIndex": 12, + "Title": "bootstrap.min.css", + "DocumentMoniker": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\bootstrap\\bootstrap.min.css", + "RelativeDocumentMoniker": "wwwroot\\css\\bootstrap\\bootstrap.min.css", + "ToolTip": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\bootstrap\\bootstrap.min.css", + "RelativeToolTip": "wwwroot\\css\\bootstrap\\bootstrap.min.css", + "ViewState": "AQIAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.003000|", + "WhenOpened": "2023-10-14T15:39:24.43Z" + }, + { + "$type": "Document", + "DocumentIndex": 9, + "Title": "Index.razor", + "DocumentMoniker": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Pages\\Index.razor", + "RelativeDocumentMoniker": "Pages\\Index.razor", + "ToolTip": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Pages\\Index.razor", + "RelativeToolTip": "Pages\\Index.razor", + "ViewState": "AgIAAAAAAAAAAAAAAAAAAAYAAAAYAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000759|", + "WhenOpened": "2023-10-14T15:39:04.923Z", + "EditorCaption": "" + }, + { + "$type": "Document", + "DocumentIndex": 1, + "Title": "FetchData.razor", + "DocumentMoniker": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Pages\\FetchData.razor", + "RelativeDocumentMoniker": "Pages\\FetchData.razor", + "ToolTip": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Pages\\FetchData.razor", + "RelativeToolTip": "Pages\\FetchData.razor", + "ViewState": "AgIAAAkAAAAAAAAAAAAAAA8AAAABAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000759|", + "WhenOpened": "2023-10-14T15:38:58.389Z", + "EditorCaption": "" + }, + { + "$type": "Document", + "DocumentIndex": 0, + "Title": "Counter.razor", + "DocumentMoniker": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Pages\\Counter.razor", + "RelativeDocumentMoniker": "Pages\\Counter.razor", + "ToolTip": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Pages\\Counter.razor", + "RelativeToolTip": "Pages\\Counter.razor", + "ViewState": "AgIAAA8AAAAAAAAAAAAAAC8AAABjAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000759|", + "WhenOpened": "2023-10-14T15:38:53.04Z", + "EditorCaption": "" + }, + { + "$type": "Document", + "DocumentIndex": 4, + "Title": "_Host.cshtml", + "DocumentMoniker": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Pages\\_Host.cshtml", + "RelativeDocumentMoniker": "Pages\\_Host.cshtml", + "ToolTip": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Pages\\_Host.cshtml", + "RelativeToolTip": "Pages\\_Host.cshtml", + "ViewState": "AgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000759|", + "WhenOpened": "2023-10-14T15:38:43.25Z", + "EditorCaption": "" + }, + { + "$type": "Document", + "DocumentIndex": 8, + "Title": "Error.cshtml", + "DocumentMoniker": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Pages\\Error.cshtml", + "RelativeDocumentMoniker": "Pages\\Error.cshtml", + "ToolTip": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Pages\\Error.cshtml", + "RelativeToolTip": "Pages\\Error.cshtml", + "ViewState": "AgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000759|", + "WhenOpened": "2023-10-14T15:38:30.772Z", + "EditorCaption": "" + }, + { + "$type": "Document", + "DocumentIndex": 11, + "Title": "site.css", + "DocumentMoniker": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\site.css", + "RelativeDocumentMoniker": "wwwroot\\css\\site.css", + "ToolTip": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\site.css", + "RelativeToolTip": "wwwroot\\css\\site.css", + "ViewState": "AQIAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.003000|", + "WhenOpened": "2023-10-14T15:39:41.03Z" + }, + { + "$type": "Document", + "DocumentIndex": 10, + "Title": "Program.cs", + "DocumentMoniker": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Program.cs", + "RelativeDocumentMoniker": "Program.cs", + "ToolTip": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Program.cs", + "RelativeToolTip": "Program.cs", + "ViewState": "AgIAAAAAAAAAAAAAAAAAAAQAAAAxAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", + "WhenOpened": "2023-10-14T15:37:54.36Z", + "EditorCaption": "" + }, + { + "$type": "Document", + "DocumentIndex": 13, + "Title": "App.razor", + "DocumentMoniker": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\App.razor", + "RelativeDocumentMoniker": "App.razor", + "ToolTip": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\App.razor", + "RelativeToolTip": "App.razor", + "ViewState": "AQIAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000759|", + "WhenOpened": "2023-10-14T15:37:46.97Z" + } + ] + } + ] + } + ] +}
\ No newline at end of file diff --git a/DrinksMachineWebsite/.vs/DrinksMachineWebsite/v17/DocumentLayout.json b/DrinksMachineWebsite/.vs/DrinksMachineWebsite/v17/DocumentLayout.json new file mode 100644 index 0000000..d706f93 --- /dev/null +++ b/DrinksMachineWebsite/.vs/DrinksMachineWebsite/v17/DocumentLayout.json @@ -0,0 +1,255 @@ +{ + "Version": 1, + "WorkspaceRootPath": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\", + "Documents": [ + { + "AbsoluteMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|c:\\users\\mgj32\\documents\\github\\drinksmachine\\drinksmachinewebsite\\pages\\counter.razor||{40D31677-CBC0-4297-A9EF-89D907823A98}", + "RelativeMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|solutionrelative:pages\\counter.razor||{40D31677-CBC0-4297-A9EF-89D907823A98}" + }, + { + "AbsoluteMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|c:\\users\\mgj32\\documents\\github\\drinksmachine\\drinksmachinewebsite\\pages\\fetchdata.razor||{40D31677-CBC0-4297-A9EF-89D907823A98}", + "RelativeMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|solutionrelative:pages\\fetchdata.razor||{40D31677-CBC0-4297-A9EF-89D907823A98}" + }, + { + "AbsoluteMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|c:\\users\\mgj32\\documents\\github\\drinksmachine\\drinksmachinewebsite\\data\\weatherforecastservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "RelativeMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|solutionrelative:data\\weatherforecastservice.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" + }, + { + "AbsoluteMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|c:\\users\\mgj32\\documents\\github\\drinksmachine\\drinksmachinewebsite\\data\\weatherforecast.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "RelativeMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|solutionrelative:data\\weatherforecast.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" + }, + { + "AbsoluteMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|c:\\users\\mgj32\\documents\\github\\drinksmachine\\drinksmachinewebsite\\pages\\_host.cshtml||{40D31677-CBC0-4297-A9EF-89D907823A98}", + "RelativeMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|solutionrelative:pages\\_host.cshtml||{40D31677-CBC0-4297-A9EF-89D907823A98}" + }, + { + "AbsoluteMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|c:\\users\\mgj32\\documents\\github\\drinksmachine\\drinksmachinewebsite\\data\\drinks.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "RelativeMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|solutionrelative:data\\drinks.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" + }, + { + "AbsoluteMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|c:\\users\\mgj32\\documents\\github\\drinksmachine\\drinksmachinewebsite\\data\\alcoholandamount.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "RelativeMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|solutionrelative:data\\alcoholandamount.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" + }, + { + "AbsoluteMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|c:\\users\\mgj32\\documents\\github\\drinksmachine\\drinksmachinewebsite\\data\\alcohol.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "RelativeMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|solutionrelative:data\\alcohol.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" + }, + { + "AbsoluteMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|c:\\users\\mgj32\\documents\\github\\drinksmachine\\drinksmachinewebsite\\pages\\error.cshtml||{40D31677-CBC0-4297-A9EF-89D907823A98}", + "RelativeMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|solutionrelative:pages\\error.cshtml||{40D31677-CBC0-4297-A9EF-89D907823A98}" + }, + { + "AbsoluteMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|c:\\users\\mgj32\\documents\\github\\drinksmachine\\drinksmachinewebsite\\pages\\index.razor||{40D31677-CBC0-4297-A9EF-89D907823A98}", + "RelativeMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|solutionrelative:pages\\index.razor||{40D31677-CBC0-4297-A9EF-89D907823A98}" + }, + { + "AbsoluteMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|c:\\users\\mgj32\\documents\\github\\drinksmachine\\drinksmachinewebsite\\program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}", + "RelativeMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|solutionrelative:program.cs||{A6C744A8-0E4A-4FC6-886A-064283054674}" + }, + { + "AbsoluteMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|c:\\users\\mgj32\\documents\\github\\drinksmachine\\drinksmachinewebsite\\wwwroot\\css\\site.css||{A5401142-F49D-43DB-90B1-F57BA349E55C}", + "RelativeMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|solutionrelative:wwwroot\\css\\site.css||{A5401142-F49D-43DB-90B1-F57BA349E55C}" + }, + { + "AbsoluteMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|c:\\users\\mgj32\\documents\\github\\drinksmachine\\drinksmachinewebsite\\wwwroot\\css\\bootstrap\\bootstrap.min.css||{A5401142-F49D-43DB-90B1-F57BA349E55C}", + "RelativeMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|solutionrelative:wwwroot\\css\\bootstrap\\bootstrap.min.css||{A5401142-F49D-43DB-90B1-F57BA349E55C}" + }, + { + "AbsoluteMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|c:\\users\\mgj32\\documents\\github\\drinksmachine\\drinksmachinewebsite\\app.razor||{40D31677-CBC0-4297-A9EF-89D907823A98}", + "RelativeMoniker": "D:0:0:{5ACB64DF-923D-4114-A40B-D0B7EBA4F402}|DrinksMachineWebsite.csproj|solutionrelative:app.razor||{40D31677-CBC0-4297-A9EF-89D907823A98}" + } + ], + "DocumentGroupContainers": [ + { + "Orientation": 0, + "VerticalTabListWidth": 256, + "DocumentGroups": [ + { + "DockedWidth": 200, + "SelectedChildIndex": 8, + "Children": [ + { + "$type": "Document", + "DocumentIndex": 6, + "Title": "AlcoholAndAmount.cs", + "DocumentMoniker": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Data\\AlcoholAndAmount.cs", + "RelativeDocumentMoniker": "Data\\AlcoholAndAmount.cs", + "ToolTip": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Data\\AlcoholAndAmount.cs", + "RelativeToolTip": "Data\\AlcoholAndAmount.cs", + "ViewState": "AgIAAAAAAAAAAAAAAAAAAA0AAAAJAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", + "WhenOpened": "2024-11-30T19:44:23.897Z", + "EditorCaption": "" + }, + { + "$type": "Document", + "DocumentIndex": 7, + "Title": "Alcohol.cs", + "DocumentMoniker": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Data\\Alcohol.cs", + "RelativeDocumentMoniker": "Data\\Alcohol.cs", + "ToolTip": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Data\\Alcohol.cs", + "RelativeToolTip": "Data\\Alcohol.cs", + "ViewState": "AgIAAAAAAAAAAAAAAAAAAA0AAAAJAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", + "WhenOpened": "2024-11-30T19:44:11.13Z", + "EditorCaption": "" + }, + { + "$type": "Document", + "DocumentIndex": 5, + "Title": "Drinks.cs", + "DocumentMoniker": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Data\\Drinks.cs", + "RelativeDocumentMoniker": "Data\\Drinks.cs", + "ToolTip": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Data\\Drinks.cs", + "RelativeToolTip": "Data\\Drinks.cs", + "ViewState": "AgIAAAAAAAAAAAAAAAAAAAgAAABHAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", + "WhenOpened": "2024-11-30T19:40:41.177Z", + "EditorCaption": "" + }, + { + "$type": "Document", + "DocumentIndex": 2, + "Title": "WeatherForecastService.cs", + "DocumentMoniker": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Data\\WeatherForecastService.cs", + "RelativeDocumentMoniker": "Data\\WeatherForecastService.cs", + "ToolTip": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Data\\WeatherForecastService.cs", + "RelativeToolTip": "Data\\WeatherForecastService.cs", + "ViewState": "AgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", + "WhenOpened": "2023-10-14T15:39:59.923Z", + "EditorCaption": "" + }, + { + "$type": "Document", + "DocumentIndex": 3, + "Title": "WeatherForecast.cs", + "DocumentMoniker": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Data\\WeatherForecast.cs", + "RelativeDocumentMoniker": "Data\\WeatherForecast.cs", + "ToolTip": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Data\\WeatherForecast.cs", + "RelativeToolTip": "Data\\WeatherForecast.cs", + "ViewState": "AgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", + "WhenOpened": "2023-10-14T15:39:54.057Z", + "EditorCaption": "" + }, + { + "$type": "Document", + "DocumentIndex": 12, + "Title": "bootstrap.min.css", + "DocumentMoniker": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\bootstrap\\bootstrap.min.css", + "RelativeDocumentMoniker": "wwwroot\\css\\bootstrap\\bootstrap.min.css", + "ToolTip": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\bootstrap\\bootstrap.min.css", + "RelativeToolTip": "wwwroot\\css\\bootstrap\\bootstrap.min.css", + "ViewState": "AQIAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.003000|", + "WhenOpened": "2023-10-14T15:39:24.43Z" + }, + { + "$type": "Document", + "DocumentIndex": 9, + "Title": "Index.razor", + "DocumentMoniker": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Pages\\Index.razor", + "RelativeDocumentMoniker": "Pages\\Index.razor", + "ToolTip": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Pages\\Index.razor", + "RelativeToolTip": "Pages\\Index.razor", + "ViewState": "AgIAAAAAAAAAAAAAAAAAAAYAAAAYAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000759|", + "WhenOpened": "2023-10-14T15:39:04.923Z", + "EditorCaption": "" + }, + { + "$type": "Document", + "DocumentIndex": 1, + "Title": "FetchData.razor", + "DocumentMoniker": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Pages\\FetchData.razor", + "RelativeDocumentMoniker": "Pages\\FetchData.razor", + "ToolTip": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Pages\\FetchData.razor", + "RelativeToolTip": "Pages\\FetchData.razor", + "ViewState": "AgIAAAkAAAAAAAAAAAAAAA8AAAABAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000759|", + "WhenOpened": "2023-10-14T15:38:58.389Z", + "EditorCaption": "" + }, + { + "$type": "Document", + "DocumentIndex": 0, + "Title": "Counter.razor", + "DocumentMoniker": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Pages\\Counter.razor", + "RelativeDocumentMoniker": "Pages\\Counter.razor", + "ToolTip": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Pages\\Counter.razor", + "RelativeToolTip": "Pages\\Counter.razor", + "ViewState": "AgIAAA8AAAAAAAAAAAAAAC8AAABjAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000759|", + "WhenOpened": "2023-10-14T15:38:53.04Z", + "EditorCaption": "" + }, + { + "$type": "Document", + "DocumentIndex": 4, + "Title": "_Host.cshtml", + "DocumentMoniker": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Pages\\_Host.cshtml", + "RelativeDocumentMoniker": "Pages\\_Host.cshtml", + "ToolTip": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Pages\\_Host.cshtml", + "RelativeToolTip": "Pages\\_Host.cshtml", + "ViewState": "AgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000759|", + "WhenOpened": "2023-10-14T15:38:43.25Z", + "EditorCaption": "" + }, + { + "$type": "Document", + "DocumentIndex": 8, + "Title": "Error.cshtml", + "DocumentMoniker": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Pages\\Error.cshtml", + "RelativeDocumentMoniker": "Pages\\Error.cshtml", + "ToolTip": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Pages\\Error.cshtml", + "RelativeToolTip": "Pages\\Error.cshtml", + "ViewState": "AgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000759|", + "WhenOpened": "2023-10-14T15:38:30.772Z", + "EditorCaption": "" + }, + { + "$type": "Document", + "DocumentIndex": 11, + "Title": "site.css", + "DocumentMoniker": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\site.css", + "RelativeDocumentMoniker": "wwwroot\\css\\site.css", + "ToolTip": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\site.css", + "RelativeToolTip": "wwwroot\\css\\site.css", + "ViewState": "AQIAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.003000|", + "WhenOpened": "2023-10-14T15:39:41.03Z" + }, + { + "$type": "Document", + "DocumentIndex": 10, + "Title": "Program.cs", + "DocumentMoniker": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Program.cs", + "RelativeDocumentMoniker": "Program.cs", + "ToolTip": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\Program.cs", + "RelativeToolTip": "Program.cs", + "ViewState": "AgIAAAAAAAAAAAAAAAAAAAQAAAAxAAAAAAAAAA==", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", + "WhenOpened": "2023-10-14T15:37:54.36Z", + "EditorCaption": "" + }, + { + "$type": "Document", + "DocumentIndex": 13, + "Title": "App.razor", + "DocumentMoniker": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\App.razor", + "RelativeDocumentMoniker": "App.razor", + "ToolTip": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\App.razor", + "RelativeToolTip": "App.razor", + "ViewState": "AQIAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000759|", + "WhenOpened": "2023-10-14T15:37:46.97Z" + } + ] + } + ] + } + ] +}
\ No newline at end of file diff --git a/DrinksMachineWebsite/.vs/ProjectEvaluation/drinksmachinewebsite.metadata.v9.bin b/DrinksMachineWebsite/.vs/ProjectEvaluation/drinksmachinewebsite.metadata.v9.bin Binary files differnew file mode 100644 index 0000000..0a19979 --- /dev/null +++ b/DrinksMachineWebsite/.vs/ProjectEvaluation/drinksmachinewebsite.metadata.v9.bin diff --git a/DrinksMachineWebsite/.vs/ProjectEvaluation/drinksmachinewebsite.projects.v9.bin b/DrinksMachineWebsite/.vs/ProjectEvaluation/drinksmachinewebsite.projects.v9.bin Binary files differnew file mode 100644 index 0000000..9501a88 --- /dev/null +++ b/DrinksMachineWebsite/.vs/ProjectEvaluation/drinksmachinewebsite.projects.v9.bin diff --git a/DrinksMachineWebsite/.vs/ProjectEvaluation/drinksmachinewebsite.strings.v9.bin b/DrinksMachineWebsite/.vs/ProjectEvaluation/drinksmachinewebsite.strings.v9.bin Binary files differnew file mode 100644 index 0000000..d76bcb4 --- /dev/null +++ b/DrinksMachineWebsite/.vs/ProjectEvaluation/drinksmachinewebsite.strings.v9.bin diff --git a/DrinksMachineWebsite/Data/Alcohol.cs b/DrinksMachineWebsite/Data/Alcohol.cs new file mode 100644 index 0000000..016b608 --- /dev/null +++ b/DrinksMachineWebsite/Data/Alcohol.cs @@ -0,0 +1,16 @@ +namespace DrinksMachineWebsite.Data +{ + public class Alcohol + { + public string name { get; set; } + public float Alcoholpercent { get; set; } + public float Amount { get; set; } + + public Alcohol(string name, float alcoholpercent, float amount) + { + this.name = name; + Alcoholpercent = alcoholpercent; + Amount = amount; + } + } +} diff --git a/DrinksMachineWebsite/Data/AlcoholAndAmount.cs b/DrinksMachineWebsite/Data/AlcoholAndAmount.cs new file mode 100644 index 0000000..f90438e --- /dev/null +++ b/DrinksMachineWebsite/Data/AlcoholAndAmount.cs @@ -0,0 +1,16 @@ +using Microsoft.AspNetCore.Mvc; + +namespace DrinksMachineWebsite.Data +{ + public class AlcoholAndAmount + { + public Alcohol Alcohol { get; set; } + public int amountOfShots { get; set; } + + public AlcoholAndAmount(Alcohol alcohol, int amountOfShots) + { + Alcohol = alcohol; + this.amountOfShots = amountOfShots; + } + } +} diff --git a/DrinksMachineWebsite/Data/Drinks.cs b/DrinksMachineWebsite/Data/Drinks.cs new file mode 100644 index 0000000..410ff29 --- /dev/null +++ b/DrinksMachineWebsite/Data/Drinks.cs @@ -0,0 +1,17 @@ +namespace DrinksMachineWebsite.Data +{ + public class Drinks + { + public String Name { get; set; } + public String Description { get; set; } + public AlcoholAndAmount AlcoholAndAmounts { get; set; } + + public Drinks(string name, string description, AlcoholAndAmount alcoholAndAmounts) + { + Name = name; + Description = description; + AlcoholAndAmounts = alcoholAndAmounts; + } + + } +} diff --git a/DrinksMachineWebsite/Pages/Counter.razor b/DrinksMachineWebsite/Pages/Counter.razor index ef23cb3..ac2f9c7 100644 --- a/DrinksMachineWebsite/Pages/Counter.razor +++ b/DrinksMachineWebsite/Pages/Counter.razor @@ -1,15 +1,58 @@ @page "/counter" +@using DrinksMachineWebsite.Data -<PageTitle>Counter</PageTitle> +<PageTitle>Drinks</PageTitle> + +<h1>List of Drinks</h1> + +@if (drinks[0] == null) +{ + <p><em>Loading...</em></p> +} +else +{ +<table class="table"> + <thead> + <tr> + <th>Name</th> + <th>Description</th> + <th>Alcohol</th> + <th>Amount of shots</th> + </tr> + </thead> + <tbody> + @for (int i = 0; i < 1; i++) + { + + <tr> + <td>@drinks[i].Name</td> + <td>@drinks[i].Description</td> + <td>@drinks[i].AlcoholAndAmounts.Alcohol.name</td> + <td>@drinks[i].AlcoholAndAmounts.amountOfShots</td> + </tr> + + } + + </tbody> +</table> +} +<button class="btn btn-primary" @onclick="Updatelist">make gin Tonic</button> -<h1>Counter</h1> -<p role="status">Current count: @currentCount</p> -<button class="btn btn-primary" @onclick="IncrementCount">Click me</button> @code { private int currentCount = 0; + public static Alcohol gin = new Alcohol("Gin", 40, 70); + private static AlcoholAndAmount ginInGinTnoic = new AlcoholAndAmount(gin, 2); + public Drinks ginTonic = new Drinks("Gin & Tonic", "a nice classic that my dear babesiboo loves", ginInGinTnoic); + + public Drinks[] drinks = new Drinks[100]; + + public void Updatelist(){ + drinks[0] = ginTonic; + } + private void IncrementCount() { diff --git a/DrinksMachineWebsite/bin/Debug/net7.0/DrinksMachineWebsite.deps.json b/DrinksMachineWebsite/bin/Debug/net7.0/DrinksMachineWebsite.deps.json new file mode 100644 index 0000000..3d85217 --- /dev/null +++ b/DrinksMachineWebsite/bin/Debug/net7.0/DrinksMachineWebsite.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": { + "DrinksMachineWebsite/1.0.0": { + "runtime": { + "DrinksMachineWebsite.dll": {} + } + } + } + }, + "libraries": { + "DrinksMachineWebsite/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +}
\ No newline at end of file diff --git a/DrinksMachineWebsite/bin/Debug/net7.0/DrinksMachineWebsite.dll b/DrinksMachineWebsite/bin/Debug/net7.0/DrinksMachineWebsite.dll Binary files differnew file mode 100644 index 0000000..8a88378 --- /dev/null +++ b/DrinksMachineWebsite/bin/Debug/net7.0/DrinksMachineWebsite.dll diff --git a/DrinksMachineWebsite/bin/Debug/net7.0/DrinksMachineWebsite.exe b/DrinksMachineWebsite/bin/Debug/net7.0/DrinksMachineWebsite.exe Binary files differnew file mode 100644 index 0000000..110bc3b --- /dev/null +++ b/DrinksMachineWebsite/bin/Debug/net7.0/DrinksMachineWebsite.exe diff --git a/DrinksMachineWebsite/bin/Debug/net7.0/DrinksMachineWebsite.pdb b/DrinksMachineWebsite/bin/Debug/net7.0/DrinksMachineWebsite.pdb Binary files differnew file mode 100644 index 0000000..6e0d054 --- /dev/null +++ b/DrinksMachineWebsite/bin/Debug/net7.0/DrinksMachineWebsite.pdb diff --git a/DrinksMachineWebsite/bin/Debug/net7.0/DrinksMachineWebsite.runtimeconfig.json b/DrinksMachineWebsite/bin/Debug/net7.0/DrinksMachineWebsite.runtimeconfig.json new file mode 100644 index 0000000..f784548 --- /dev/null +++ b/DrinksMachineWebsite/bin/Debug/net7.0/DrinksMachineWebsite.runtimeconfig.json @@ -0,0 +1,19 @@ +{ + "runtimeOptions": { + "tfm": "net7.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "7.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "7.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +}
\ No newline at end of file diff --git a/DrinksMachineWebsite/bin/Debug/net7.0/DrinksMachineWebsite.staticwebassets.endpoints.json b/DrinksMachineWebsite/bin/Debug/net7.0/DrinksMachineWebsite.staticwebassets.endpoints.json new file mode 100644 index 0000000..c4d27ec --- /dev/null +++ b/DrinksMachineWebsite/bin/Debug/net7.0/DrinksMachineWebsite.staticwebassets.endpoints.json @@ -0,0 +1,1154 @@ +{ + "Version": 1, + "ManifestType": "Build", + "Endpoints": [ + { + "Route": "DrinksMachineWebsite.0uicmg3r4l.styles.css", + "AssetFile": "DrinksMachineWebsite.styles.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3031" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"WPAMy+7Tb/NhQ+1MiYZzvmezx0hgWrgxk2sWGiEmdoc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 30 Nov 2024 19:30:04 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0uicmg3r4l" + }, + { + "Name": "integrity", + "Value": "sha256-WPAMy+7Tb/NhQ+1MiYZzvmezx0hgWrgxk2sWGiEmdoc=" + }, + { + "Name": "label", + "Value": "DrinksMachineWebsite.styles.css" + } + ] + }, + { + "Route": "DrinksMachineWebsite.styles.css", + "AssetFile": "DrinksMachineWebsite.styles.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3031" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"WPAMy+7Tb/NhQ+1MiYZzvmezx0hgWrgxk2sWGiEmdoc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 30 Nov 2024 19:30:04 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WPAMy+7Tb/NhQ+1MiYZzvmezx0hgWrgxk2sWGiEmdoc=" + } + ] + }, + { + "Route": "css/bootstrap/bootstrap.min.bpk8xqwxhs.css", + "AssetFile": "css/bootstrap/bootstrap.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "162720" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"z8OR40MowJ8GgK6P89Y+hiJK5+cclzFHzLhFQLL92bg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bpk8xqwxhs" + }, + { + "Name": "integrity", + "Value": "sha256-z8OR40MowJ8GgK6P89Y+hiJK5+cclzFHzLhFQLL92bg=" + }, + { + "Name": "label", + "Value": "css/bootstrap/bootstrap.min.css" + } + ] + }, + { + "Route": "css/bootstrap/bootstrap.min.css", + "AssetFile": "css/bootstrap/bootstrap.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "162720" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"z8OR40MowJ8GgK6P89Y+hiJK5+cclzFHzLhFQLL92bg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z8OR40MowJ8GgK6P89Y+hiJK5+cclzFHzLhFQLL92bg=" + } + ] + }, + { + "Route": "css/bootstrap/bootstrap.min.css.8inm30yfxf.map", + "AssetFile": "css/bootstrap/bootstrap.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "449111" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"gBwg2tmA0Ci2u54gMF1jNCVku6vznarkLS6D76htNNQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8inm30yfxf" + }, + { + "Name": "integrity", + "Value": "sha256-gBwg2tmA0Ci2u54gMF1jNCVku6vznarkLS6D76htNNQ=" + }, + { + "Name": "label", + "Value": "css/bootstrap/bootstrap.min.css.map" + } + ] + }, + { + "Route": "css/bootstrap/bootstrap.min.css.map", + "AssetFile": "css/bootstrap/bootstrap.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "449111" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"gBwg2tmA0Ci2u54gMF1jNCVku6vznarkLS6D76htNNQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gBwg2tmA0Ci2u54gMF1jNCVku6vznarkLS6D76htNNQ=" + } + ] + }, + { + "Route": "css/open-iconic/FONT-LICENSE", + "AssetFile": "css/open-iconic/FONT-LICENSE", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4103" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "\"jA4J4h/k76zVxbFKEaWwFKJccmO0voOQ1DbUW+5YNlI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jA4J4h/k76zVxbFKEaWwFKJccmO0voOQ1DbUW+5YNlI=" + } + ] + }, + { + "Route": "css/open-iconic/FONT-LICENSE.48tmkg660f", + "AssetFile": "css/open-iconic/FONT-LICENSE", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4103" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "\"jA4J4h/k76zVxbFKEaWwFKJccmO0voOQ1DbUW+5YNlI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "48tmkg660f" + }, + { + "Name": "integrity", + "Value": "sha256-jA4J4h/k76zVxbFKEaWwFKJccmO0voOQ1DbUW+5YNlI=" + }, + { + "Name": "label", + "Value": "css/open-iconic/FONT-LICENSE" + } + ] + }, + { + "Route": "css/open-iconic/ICON-LICENSE", + "AssetFile": "css/open-iconic/ICON-LICENSE", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1093" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "\"aF5g/izareSj02F3MPSoTGNbcMBl9nmZKDe04zjU/ss=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aF5g/izareSj02F3MPSoTGNbcMBl9nmZKDe04zjU/ss=" + } + ] + }, + { + "Route": "css/open-iconic/ICON-LICENSE.4dwjve0o0b", + "AssetFile": "css/open-iconic/ICON-LICENSE", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1093" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "\"aF5g/izareSj02F3MPSoTGNbcMBl9nmZKDe04zjU/ss=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4dwjve0o0b" + }, + { + "Name": "integrity", + "Value": "sha256-aF5g/izareSj02F3MPSoTGNbcMBl9nmZKDe04zjU/ss=" + }, + { + "Name": "label", + "Value": "css/open-iconic/ICON-LICENSE" + } + ] + }, + { + "Route": "css/open-iconic/README.5bzwdl5l6x.md", + "AssetFile": "css/open-iconic/README.md", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3655" + }, + { + "Name": "Content-Type", + "Value": "text/markdown" + }, + { + "Name": "ETag", + "Value": "\"waukoLqsiIAw/nXpsKkTHnhImmcPijcBEd2lzqzJNN0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5bzwdl5l6x" + }, + { + "Name": "integrity", + "Value": "sha256-waukoLqsiIAw/nXpsKkTHnhImmcPijcBEd2lzqzJNN0=" + }, + { + "Name": "label", + "Value": "css/open-iconic/README.md" + } + ] + }, + { + "Route": "css/open-iconic/README.md", + "AssetFile": "css/open-iconic/README.md", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3655" + }, + { + "Name": "Content-Type", + "Value": "text/markdown" + }, + { + "Name": "ETag", + "Value": "\"waukoLqsiIAw/nXpsKkTHnhImmcPijcBEd2lzqzJNN0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-waukoLqsiIAw/nXpsKkTHnhImmcPijcBEd2lzqzJNN0=" + } + ] + }, + { + "Route": "css/open-iconic/font/css/open-iconic-bootstrap.min.cmapd0fi15.css", + "AssetFile": "css/open-iconic/font/css/open-iconic-bootstrap.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9395" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"BJ/G+e+y7bQdrYkS2RBTyNfBHpA9IuGaPmf9htub5MQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cmapd0fi15" + }, + { + "Name": "integrity", + "Value": "sha256-BJ/G+e+y7bQdrYkS2RBTyNfBHpA9IuGaPmf9htub5MQ=" + }, + { + "Name": "label", + "Value": "css/open-iconic/font/css/open-iconic-bootstrap.min.css" + } + ] + }, + { + "Route": "css/open-iconic/font/css/open-iconic-bootstrap.min.css", + "AssetFile": "css/open-iconic/font/css/open-iconic-bootstrap.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9395" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"BJ/G+e+y7bQdrYkS2RBTyNfBHpA9IuGaPmf9htub5MQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BJ/G+e+y7bQdrYkS2RBTyNfBHpA9IuGaPmf9htub5MQ=" + } + ] + }, + { + "Route": "css/open-iconic/font/fonts/open-iconic.0uw8dim9nl.eot", + "AssetFile": "css/open-iconic/font/fonts/open-iconic.eot", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "28196" + }, + { + "Name": "Content-Type", + "Value": "application/vnd.ms-fontobject" + }, + { + "Name": "ETag", + "Value": "\"OK3poGPgzKI2NzNgP07XMbJa3Dz6USoUh/chSkSvQpc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0uw8dim9nl" + }, + { + "Name": "integrity", + "Value": "sha256-OK3poGPgzKI2NzNgP07XMbJa3Dz6USoUh/chSkSvQpc=" + }, + { + "Name": "label", + "Value": "css/open-iconic/font/fonts/open-iconic.eot" + } + ] + }, + { + "Route": "css/open-iconic/font/fonts/open-iconic.eot", + "AssetFile": "css/open-iconic/font/fonts/open-iconic.eot", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "28196" + }, + { + "Name": "Content-Type", + "Value": "application/vnd.ms-fontobject" + }, + { + "Name": "ETag", + "Value": "\"OK3poGPgzKI2NzNgP07XMbJa3Dz6USoUh/chSkSvQpc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OK3poGPgzKI2NzNgP07XMbJa3Dz6USoUh/chSkSvQpc=" + } + ] + }, + { + "Route": "css/open-iconic/font/fonts/open-iconic.h4d0pazwgy.woff", + "AssetFile": "css/open-iconic/font/fonts/open-iconic.woff", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "14984" + }, + { + "Name": "Content-Type", + "Value": "application/font-woff" + }, + { + "Name": "ETag", + "Value": "\"cZPqVlRJfSNW0KaQ4+UPOXZ/v/QzXlejRDwUNdZIofI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h4d0pazwgy" + }, + { + "Name": "integrity", + "Value": "sha256-cZPqVlRJfSNW0KaQ4+UPOXZ/v/QzXlejRDwUNdZIofI=" + }, + { + "Name": "label", + "Value": "css/open-iconic/font/fonts/open-iconic.woff" + } + ] + }, + { + "Route": "css/open-iconic/font/fonts/open-iconic.ll5grcv8wv.ttf", + "AssetFile": "css/open-iconic/font/fonts/open-iconic.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "28028" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"p+RP8CV3vRK1YbIkNzq3rPo1jyETPnR07ULb+HVYL8w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ll5grcv8wv" + }, + { + "Name": "integrity", + "Value": "sha256-p+RP8CV3vRK1YbIkNzq3rPo1jyETPnR07ULb+HVYL8w=" + }, + { + "Name": "label", + "Value": "css/open-iconic/font/fonts/open-iconic.ttf" + } + ] + }, + { + "Route": "css/open-iconic/font/fonts/open-iconic.otf", + "AssetFile": "css/open-iconic/font/fonts/open-iconic.otf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "20996" + }, + { + "Name": "Content-Type", + "Value": "font/otf" + }, + { + "Name": "ETag", + "Value": "\"sDUtuZAEzWZyv/U1xl/9D3ehyU69JE+FvAcu5HQ+/a0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sDUtuZAEzWZyv/U1xl/9D3ehyU69JE+FvAcu5HQ+/a0=" + } + ] + }, + { + "Route": "css/open-iconic/font/fonts/open-iconic.sjnzgf7e1h.svg", + "AssetFile": "css/open-iconic/font/fonts/open-iconic.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "55332" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"+P1oQ5jPzOVJGC52E1oxGXIXxxCyMlqy6A9cNxGYzVk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sjnzgf7e1h" + }, + { + "Name": "integrity", + "Value": "sha256-+P1oQ5jPzOVJGC52E1oxGXIXxxCyMlqy6A9cNxGYzVk=" + }, + { + "Name": "label", + "Value": "css/open-iconic/font/fonts/open-iconic.svg" + } + ] + }, + { + "Route": "css/open-iconic/font/fonts/open-iconic.svg", + "AssetFile": "css/open-iconic/font/fonts/open-iconic.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "55332" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"+P1oQ5jPzOVJGC52E1oxGXIXxxCyMlqy6A9cNxGYzVk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+P1oQ5jPzOVJGC52E1oxGXIXxxCyMlqy6A9cNxGYzVk=" + } + ] + }, + { + "Route": "css/open-iconic/font/fonts/open-iconic.ttf", + "AssetFile": "css/open-iconic/font/fonts/open-iconic.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "28028" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"p+RP8CV3vRK1YbIkNzq3rPo1jyETPnR07ULb+HVYL8w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-p+RP8CV3vRK1YbIkNzq3rPo1jyETPnR07ULb+HVYL8w=" + } + ] + }, + { + "Route": "css/open-iconic/font/fonts/open-iconic.wk8x8xm0ah.otf", + "AssetFile": "css/open-iconic/font/fonts/open-iconic.otf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "20996" + }, + { + "Name": "Content-Type", + "Value": "font/otf" + }, + { + "Name": "ETag", + "Value": "\"sDUtuZAEzWZyv/U1xl/9D3ehyU69JE+FvAcu5HQ+/a0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wk8x8xm0ah" + }, + { + "Name": "integrity", + "Value": "sha256-sDUtuZAEzWZyv/U1xl/9D3ehyU69JE+FvAcu5HQ+/a0=" + }, + { + "Name": "label", + "Value": "css/open-iconic/font/fonts/open-iconic.otf" + } + ] + }, + { + "Route": "css/open-iconic/font/fonts/open-iconic.woff", + "AssetFile": "css/open-iconic/font/fonts/open-iconic.woff", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "14984" + }, + { + "Name": "Content-Type", + "Value": "application/font-woff" + }, + { + "Name": "ETag", + "Value": "\"cZPqVlRJfSNW0KaQ4+UPOXZ/v/QzXlejRDwUNdZIofI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cZPqVlRJfSNW0KaQ4+UPOXZ/v/QzXlejRDwUNdZIofI=" + } + ] + }, + { + "Route": "css/site.css", + "AssetFile": "css/site.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2978" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Fx+c1youNLgejKLBM3S2fD6fcDOSv/D7tNQKm5gws6U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Fx+c1youNLgejKLBM3S2fD6fcDOSv/D7tNQKm5gws6U=" + } + ] + }, + { + "Route": "css/site.zh9s866nx2.css", + "AssetFile": "css/site.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2978" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Fx+c1youNLgejKLBM3S2fD6fcDOSv/D7tNQKm5gws6U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zh9s866nx2" + }, + { + "Name": "integrity", + "Value": "sha256-Fx+c1youNLgejKLBM3S2fD6fcDOSv/D7tNQKm5gws6U=" + }, + { + "Name": "label", + "Value": "css/site.css" + } + ] + }, + { + "Route": "favicon.ifv42okdf2.png", + "AssetFile": "favicon.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1148" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ifv42okdf2" + }, + { + "Name": "integrity", + "Value": "sha256-4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=" + }, + { + "Name": "label", + "Value": "favicon.png" + } + ] + }, + { + "Route": "favicon.png", + "AssetFile": "favicon.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1148" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=" + } + ] + } + ] +}
\ No newline at end of file diff --git a/DrinksMachineWebsite/bin/Debug/net7.0/DrinksMachineWebsite.staticwebassets.runtime.json b/DrinksMachineWebsite/bin/Debug/net7.0/DrinksMachineWebsite.staticwebassets.runtime.json new file mode 100644 index 0000000..bc34e84 --- /dev/null +++ b/DrinksMachineWebsite/bin/Debug/net7.0/DrinksMachineWebsite.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\","C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\obj\\Debug\\net7.0\\scopedcss\\bundle\\"],"Root":{"Children":{"css":{"Children":{"bootstrap":{"Children":{"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap/bootstrap.min.css.map"},"Patterns":null}},"Asset":null,"Patterns":null},"open-iconic":{"Children":{"FONT-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/FONT-LICENSE"},"Patterns":null},"font":{"Children":{"css":{"Children":{"open-iconic-bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/css/open-iconic-bootstrap.min.css"},"Patterns":null}},"Asset":null,"Patterns":null},"fonts":{"Children":{"open-iconic.eot":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.eot"},"Patterns":null},"open-iconic.otf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.otf"},"Patterns":null},"open-iconic.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.svg"},"Patterns":null},"open-iconic.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.ttf"},"Patterns":null},"open-iconic.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.woff"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"ICON-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/ICON-LICENSE"},"Patterns":null},"README.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/README.md"},"Patterns":null}},"Asset":null,"Patterns":null},"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"favicon.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.png"},"Patterns":null},"DrinksMachineWebsite.styles.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"DrinksMachineWebsite.styles.css"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
\ No newline at end of file diff --git a/DrinksMachineWebsite/bin/Debug/net7.0/appsettings.Development.json b/DrinksMachineWebsite/bin/Debug/net7.0/appsettings.Development.json new file mode 100644 index 0000000..770d3e9 --- /dev/null +++ b/DrinksMachineWebsite/bin/Debug/net7.0/appsettings.Development.json @@ -0,0 +1,9 @@ +{ + "DetailedErrors": true, + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/DrinksMachineWebsite/bin/Debug/net7.0/appsettings.json b/DrinksMachineWebsite/bin/Debug/net7.0/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/DrinksMachineWebsite/bin/Debug/net7.0/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/DrinksMachineWebsite/obj/Debug/net7.0/8d4162a1-ad59-414d-a81d-fc8b703511b6_DrinksMachineWebsite.pdb b/DrinksMachineWebsite/obj/Debug/net7.0/8d4162a1-ad59-414d-a81d-fc8b703511b6_DrinksMachineWebsite.pdb Binary files differnew file mode 100644 index 0000000..cfb3f35 --- /dev/null +++ b/DrinksMachineWebsite/obj/Debug/net7.0/8d4162a1-ad59-414d-a81d-fc8b703511b6_DrinksMachineWebsite.pdb diff --git a/DrinksMachineWebsite/obj/Debug/net7.0/ApiEndpoints.json b/DrinksMachineWebsite/obj/Debug/net7.0/ApiEndpoints.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/DrinksMachineWebsite/obj/Debug/net7.0/ApiEndpoints.json @@ -0,0 +1 @@ +[]
\ No newline at end of file diff --git a/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.AssemblyInfo.cs b/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.AssemblyInfo.cs index aab7248..9260e3a 100644 --- a/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.AssemblyInfo.cs +++ b/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.AssemblyInfo.cs @@ -14,7 +14,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("DrinksMachineWebsite")] [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+eedb2bdb2cc1293e6abb4099d700222b7260baaa")] [assembly: System.Reflection.AssemblyProductAttribute("DrinksMachineWebsite")] [assembly: System.Reflection.AssemblyTitleAttribute("DrinksMachineWebsite")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.AssemblyInfoInputs.cache b/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.AssemblyInfoInputs.cache index 72941fd..fc7d040 100644 --- a/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.AssemblyInfoInputs.cache +++ b/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.AssemblyInfoInputs.cache @@ -1 +1 @@ -37997ea6f3dc91f5e91045177e3ad0bcfc230b29 +9935ba06d9da206170640171f946d00e1d5a9193b0b856990ba22c0929f3037e diff --git a/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.GeneratedMSBuildEditorConfig.editorconfig b/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.GeneratedMSBuildEditorConfig.editorconfig index 4908d61..9269133 100644 --- a/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.GeneratedMSBuildEditorConfig.editorconfig +++ b/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.GeneratedMSBuildEditorConfig.editorconfig @@ -10,11 +10,15 @@ build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = DrinksMachineWebsite build_property.RootNamespace = DrinksMachineWebsite build_property.ProjectDir = C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = build_property.RazorLangVersion = 7.0 build_property.SupportLocalizedComponentNames = build_property.GenerateRazorMetadataSourceChecksumAttributes = build_property.MSBuildProjectDirectory = C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 7.0 +build_property.EnableCodeStyleSeverity = [C:/Users/mgj32/Documents/GitHub/DrinksMachine/DrinksMachineWebsite/App.razor] build_metadata.AdditionalFiles.TargetPath = QXBwLnJhem9y diff --git a/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.MvcApplicationPartsAssemblyInfo.cache b/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.MvcApplicationPartsAssemblyInfo.cache diff --git a/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.RazorAssemblyInfo.cache b/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.RazorAssemblyInfo.cache index f24b41d..ecb9c97 100644 --- a/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.RazorAssemblyInfo.cache +++ b/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.RazorAssemblyInfo.cache @@ -1 +1 @@ -5860763757f4f08c7ebdea1b3a94a18109f17861 +d5ac7ab69059af111e9d7125adeb7b174ca570725d4b64a544cca7bd11ac7ca0 diff --git a/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.assets.cache b/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.assets.cache Binary files differindex 340342c..d81cb67 100644 --- a/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.assets.cache +++ b/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.assets.cache diff --git a/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.csproj.BuildWithSkipAnalyzers b/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.csproj.BuildWithSkipAnalyzers diff --git a/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.csproj.CoreCompileInputs.cache b/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..653b151 --- /dev/null +++ b/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +4c0ad7f77e06fd4634678415a8fd375f497499b7037028c6d7504a7342ac0e4b diff --git a/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.csproj.FileListAbsolute.txt b/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..dcdf47b --- /dev/null +++ b/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.csproj.FileListAbsolute.txt @@ -0,0 +1,36 @@ +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\bin\Debug\net7.0\appsettings.Development.json +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\bin\Debug\net7.0\appsettings.json +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\bin\Debug\net7.0\DrinksMachineWebsite.staticwebassets.runtime.json +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\bin\Debug\net7.0\DrinksMachineWebsite.staticwebassets.endpoints.json +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\bin\Debug\net7.0\DrinksMachineWebsite.exe +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\bin\Debug\net7.0\DrinksMachineWebsite.deps.json +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\bin\Debug\net7.0\DrinksMachineWebsite.runtimeconfig.json +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\bin\Debug\net7.0\DrinksMachineWebsite.dll +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\bin\Debug\net7.0\DrinksMachineWebsite.pdb +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\obj\Debug\net7.0\DrinksMachineWebsite.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\obj\Debug\net7.0\DrinksMachineWebsite.AssemblyInfoInputs.cache +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\obj\Debug\net7.0\DrinksMachineWebsite.AssemblyInfo.cs +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\obj\Debug\net7.0\DrinksMachineWebsite.csproj.CoreCompileInputs.cache +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\obj\Debug\net7.0\DrinksMachineWebsite.MvcApplicationPartsAssemblyInfo.cache +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\obj\Debug\net7.0\DrinksMachineWebsite.RazorAssemblyInfo.cache +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\obj\Debug\net7.0\DrinksMachineWebsite.RazorAssemblyInfo.cs +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\obj\Debug\net7.0\DrinksMachineWebsite.sourcelink.json +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\obj\Debug\net7.0\scopedcss\Shared\MainLayout.razor.rz.scp.css +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\obj\Debug\net7.0\scopedcss\Shared\NavMenu.razor.rz.scp.css +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\obj\Debug\net7.0\scopedcss\bundle\DrinksMachineWebsite.styles.css +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\obj\Debug\net7.0\scopedcss\projectbundle\DrinksMachineWebsite.bundle.scp.css +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\obj\Debug\net7.0\staticwebassets.build.json +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\obj\Debug\net7.0\staticwebassets.development.json +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\obj\Debug\net7.0\staticwebassets.build.endpoints.json +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\obj\Debug\net7.0\staticwebassets\msbuild.DrinksMachineWebsite.Microsoft.AspNetCore.StaticWebAssets.props +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\obj\Debug\net7.0\staticwebassets\msbuild.DrinksMachineWebsite.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\obj\Debug\net7.0\staticwebassets\msbuild.build.DrinksMachineWebsite.props +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\obj\Debug\net7.0\staticwebassets\msbuild.buildMultiTargeting.DrinksMachineWebsite.props +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\obj\Debug\net7.0\staticwebassets\msbuild.buildTransitive.DrinksMachineWebsite.props +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\obj\Debug\net7.0\staticwebassets.pack.json +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\obj\Debug\net7.0\staticwebassets.upToDateCheck.txt +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\obj\Debug\net7.0\DrinksMachineWebsite.dll +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\obj\Debug\net7.0\refint\DrinksMachineWebsite.dll +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\obj\Debug\net7.0\DrinksMachineWebsite.pdb +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\obj\Debug\net7.0\DrinksMachineWebsite.genruntimeconfig.cache +C:\Users\mgj32\Documents\GitHub\DrinksMachine\DrinksMachineWebsite\obj\Debug\net7.0\ref\DrinksMachineWebsite.dll diff --git a/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.dll b/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.dll Binary files differnew file mode 100644 index 0000000..8a88378 --- /dev/null +++ b/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.dll diff --git a/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.genruntimeconfig.cache b/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.genruntimeconfig.cache new file mode 100644 index 0000000..db056ac --- /dev/null +++ b/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.genruntimeconfig.cache @@ -0,0 +1 @@ +319ebaa8fcdfb6d14e0ae4d965cc7dcd809d25e0e71af64707b8b60e53a32858 diff --git a/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.pdb b/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.pdb Binary files differnew file mode 100644 index 0000000..6e0d054 --- /dev/null +++ b/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.pdb diff --git a/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.sourcelink.json b/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.sourcelink.json new file mode 100644 index 0000000..347b9b1 --- /dev/null +++ b/DrinksMachineWebsite/obj/Debug/net7.0/DrinksMachineWebsite.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\*":"https://raw.githubusercontent.com/sjory3/DrinksMachine/eedb2bdb2cc1293e6abb4099d700222b7260baaa/*"}}
\ No newline at end of file diff --git a/DrinksMachineWebsite/obj/Debug/net7.0/apphost.exe b/DrinksMachineWebsite/obj/Debug/net7.0/apphost.exe Binary files differnew file mode 100644 index 0000000..110bc3b --- /dev/null +++ b/DrinksMachineWebsite/obj/Debug/net7.0/apphost.exe diff --git a/DrinksMachineWebsite/obj/Debug/net7.0/ref/DrinksMachineWebsite.dll b/DrinksMachineWebsite/obj/Debug/net7.0/ref/DrinksMachineWebsite.dll Binary files differnew file mode 100644 index 0000000..a9027f4 --- /dev/null +++ b/DrinksMachineWebsite/obj/Debug/net7.0/ref/DrinksMachineWebsite.dll diff --git a/DrinksMachineWebsite/obj/Debug/net7.0/refint/DrinksMachineWebsite.dll b/DrinksMachineWebsite/obj/Debug/net7.0/refint/DrinksMachineWebsite.dll Binary files differnew file mode 100644 index 0000000..a9027f4 --- /dev/null +++ b/DrinksMachineWebsite/obj/Debug/net7.0/refint/DrinksMachineWebsite.dll diff --git a/DrinksMachineWebsite/obj/Debug/net7.0/scopedcss/Shared/MainLayout.razor.rz.scp.css b/DrinksMachineWebsite/obj/Debug/net7.0/scopedcss/Shared/MainLayout.razor.rz.scp.css new file mode 100644 index 0000000..d74aacf --- /dev/null +++ b/DrinksMachineWebsite/obj/Debug/net7.0/scopedcss/Shared/MainLayout.razor.rz.scp.css @@ -0,0 +1,70 @@ +.page[b-vk7figmle8] { + position: relative; + display: flex; + flex-direction: column; +} + +main[b-vk7figmle8] { + flex: 1; +} + +.sidebar[b-vk7figmle8] { + background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%); +} + +.top-row[b-vk7figmle8] { + background-color: #f7f7f7; + border-bottom: 1px solid #d6d5d5; + justify-content: flex-end; + height: 3.5rem; + display: flex; + align-items: center; +} + + .top-row[b-vk7figmle8] a, .top-row .btn-link[b-vk7figmle8] { + white-space: nowrap; + margin-left: 1.5rem; + } + + .top-row a:first-child[b-vk7figmle8] { + overflow: hidden; + text-overflow: ellipsis; + } + +@media (max-width: 640.98px) { + .top-row:not(.auth)[b-vk7figmle8] { + display: none; + } + + .top-row.auth[b-vk7figmle8] { + justify-content: space-between; + } + + .top-row a[b-vk7figmle8], .top-row .btn-link[b-vk7figmle8] { + margin-left: 0; + } +} + +@media (min-width: 641px) { + .page[b-vk7figmle8] { + flex-direction: row; + } + + .sidebar[b-vk7figmle8] { + width: 250px; + height: 100vh; + position: sticky; + top: 0; + } + + .top-row[b-vk7figmle8] { + position: sticky; + top: 0; + z-index: 1; + } + + .top-row[b-vk7figmle8], article[b-vk7figmle8] { + padding-left: 2rem !important; + padding-right: 1.5rem !important; + } +} diff --git a/DrinksMachineWebsite/obj/Debug/net7.0/scopedcss/Shared/NavMenu.razor.rz.scp.css b/DrinksMachineWebsite/obj/Debug/net7.0/scopedcss/Shared/NavMenu.razor.rz.scp.css new file mode 100644 index 0000000..3bd36dc --- /dev/null +++ b/DrinksMachineWebsite/obj/Debug/net7.0/scopedcss/Shared/NavMenu.razor.rz.scp.css @@ -0,0 +1,68 @@ +.navbar-toggler[b-w7xopd5w5b] { + background-color: rgba(255, 255, 255, 0.1); +} + +.top-row[b-w7xopd5w5b] { + height: 3.5rem; + background-color: rgba(0,0,0,0.4); +} + +.navbar-brand[b-w7xopd5w5b] { + font-size: 1.1rem; +} + +.oi[b-w7xopd5w5b] { + width: 2rem; + font-size: 1.1rem; + vertical-align: text-top; + top: -2px; +} + +.nav-item[b-w7xopd5w5b] { + font-size: 0.9rem; + padding-bottom: 0.5rem; +} + + .nav-item:first-of-type[b-w7xopd5w5b] { + padding-top: 1rem; + } + + .nav-item:last-of-type[b-w7xopd5w5b] { + padding-bottom: 1rem; + } + + .nav-item[b-w7xopd5w5b] a { + color: #d7d7d7; + border-radius: 4px; + height: 3rem; + display: flex; + align-items: center; + line-height: 3rem; + } + +.nav-item[b-w7xopd5w5b] a.active { + background-color: rgba(255,255,255,0.25); + color: white; +} + +.nav-item[b-w7xopd5w5b] a:hover { + background-color: rgba(255,255,255,0.1); + color: white; +} + +@media (min-width: 641px) { + .navbar-toggler[b-w7xopd5w5b] { + display: none; + } + + .collapse[b-w7xopd5w5b] { + /* Never collapse the sidebar for wide screens */ + display: block; + } + + .nav-scrollable[b-w7xopd5w5b] { + /* Allow sidebar to scroll for tall menus */ + height: calc(100vh - 3.5rem); + overflow-y: auto; + } +} diff --git a/DrinksMachineWebsite/obj/Debug/net7.0/scopedcss/bundle/DrinksMachineWebsite.styles.css b/DrinksMachineWebsite/obj/Debug/net7.0/scopedcss/bundle/DrinksMachineWebsite.styles.css new file mode 100644 index 0000000..1576ed8 --- /dev/null +++ b/DrinksMachineWebsite/obj/Debug/net7.0/scopedcss/bundle/DrinksMachineWebsite.styles.css @@ -0,0 +1,140 @@ +/* _content/DrinksMachineWebsite/Shared/MainLayout.razor.rz.scp.css */ +.page[b-vk7figmle8] { + position: relative; + display: flex; + flex-direction: column; +} + +main[b-vk7figmle8] { + flex: 1; +} + +.sidebar[b-vk7figmle8] { + background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%); +} + +.top-row[b-vk7figmle8] { + background-color: #f7f7f7; + border-bottom: 1px solid #d6d5d5; + justify-content: flex-end; + height: 3.5rem; + display: flex; + align-items: center; +} + + .top-row[b-vk7figmle8] a, .top-row .btn-link[b-vk7figmle8] { + white-space: nowrap; + margin-left: 1.5rem; + } + + .top-row a:first-child[b-vk7figmle8] { + overflow: hidden; + text-overflow: ellipsis; + } + +@media (max-width: 640.98px) { + .top-row:not(.auth)[b-vk7figmle8] { + display: none; + } + + .top-row.auth[b-vk7figmle8] { + justify-content: space-between; + } + + .top-row a[b-vk7figmle8], .top-row .btn-link[b-vk7figmle8] { + margin-left: 0; + } +} + +@media (min-width: 641px) { + .page[b-vk7figmle8] { + flex-direction: row; + } + + .sidebar[b-vk7figmle8] { + width: 250px; + height: 100vh; + position: sticky; + top: 0; + } + + .top-row[b-vk7figmle8] { + position: sticky; + top: 0; + z-index: 1; + } + + .top-row[b-vk7figmle8], article[b-vk7figmle8] { + padding-left: 2rem !important; + padding-right: 1.5rem !important; + } +} +/* _content/DrinksMachineWebsite/Shared/NavMenu.razor.rz.scp.css */ +.navbar-toggler[b-w7xopd5w5b] { + background-color: rgba(255, 255, 255, 0.1); +} + +.top-row[b-w7xopd5w5b] { + height: 3.5rem; + background-color: rgba(0,0,0,0.4); +} + +.navbar-brand[b-w7xopd5w5b] { + font-size: 1.1rem; +} + +.oi[b-w7xopd5w5b] { + width: 2rem; + font-size: 1.1rem; + vertical-align: text-top; + top: -2px; +} + +.nav-item[b-w7xopd5w5b] { + font-size: 0.9rem; + padding-bottom: 0.5rem; +} + + .nav-item:first-of-type[b-w7xopd5w5b] { + padding-top: 1rem; + } + + .nav-item:last-of-type[b-w7xopd5w5b] { + padding-bottom: 1rem; + } + + .nav-item[b-w7xopd5w5b] a { + color: #d7d7d7; + border-radius: 4px; + height: 3rem; + display: flex; + align-items: center; + line-height: 3rem; + } + +.nav-item[b-w7xopd5w5b] a.active { + background-color: rgba(255,255,255,0.25); + color: white; +} + +.nav-item[b-w7xopd5w5b] a:hover { + background-color: rgba(255,255,255,0.1); + color: white; +} + +@media (min-width: 641px) { + .navbar-toggler[b-w7xopd5w5b] { + display: none; + } + + .collapse[b-w7xopd5w5b] { + /* Never collapse the sidebar for wide screens */ + display: block; + } + + .nav-scrollable[b-w7xopd5w5b] { + /* Allow sidebar to scroll for tall menus */ + height: calc(100vh - 3.5rem); + overflow-y: auto; + } +} diff --git a/DrinksMachineWebsite/obj/Debug/net7.0/scopedcss/projectbundle/DrinksMachineWebsite.bundle.scp.css b/DrinksMachineWebsite/obj/Debug/net7.0/scopedcss/projectbundle/DrinksMachineWebsite.bundle.scp.css new file mode 100644 index 0000000..1576ed8 --- /dev/null +++ b/DrinksMachineWebsite/obj/Debug/net7.0/scopedcss/projectbundle/DrinksMachineWebsite.bundle.scp.css @@ -0,0 +1,140 @@ +/* _content/DrinksMachineWebsite/Shared/MainLayout.razor.rz.scp.css */ +.page[b-vk7figmle8] { + position: relative; + display: flex; + flex-direction: column; +} + +main[b-vk7figmle8] { + flex: 1; +} + +.sidebar[b-vk7figmle8] { + background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%); +} + +.top-row[b-vk7figmle8] { + background-color: #f7f7f7; + border-bottom: 1px solid #d6d5d5; + justify-content: flex-end; + height: 3.5rem; + display: flex; + align-items: center; +} + + .top-row[b-vk7figmle8] a, .top-row .btn-link[b-vk7figmle8] { + white-space: nowrap; + margin-left: 1.5rem; + } + + .top-row a:first-child[b-vk7figmle8] { + overflow: hidden; + text-overflow: ellipsis; + } + +@media (max-width: 640.98px) { + .top-row:not(.auth)[b-vk7figmle8] { + display: none; + } + + .top-row.auth[b-vk7figmle8] { + justify-content: space-between; + } + + .top-row a[b-vk7figmle8], .top-row .btn-link[b-vk7figmle8] { + margin-left: 0; + } +} + +@media (min-width: 641px) { + .page[b-vk7figmle8] { + flex-direction: row; + } + + .sidebar[b-vk7figmle8] { + width: 250px; + height: 100vh; + position: sticky; + top: 0; + } + + .top-row[b-vk7figmle8] { + position: sticky; + top: 0; + z-index: 1; + } + + .top-row[b-vk7figmle8], article[b-vk7figmle8] { + padding-left: 2rem !important; + padding-right: 1.5rem !important; + } +} +/* _content/DrinksMachineWebsite/Shared/NavMenu.razor.rz.scp.css */ +.navbar-toggler[b-w7xopd5w5b] { + background-color: rgba(255, 255, 255, 0.1); +} + +.top-row[b-w7xopd5w5b] { + height: 3.5rem; + background-color: rgba(0,0,0,0.4); +} + +.navbar-brand[b-w7xopd5w5b] { + font-size: 1.1rem; +} + +.oi[b-w7xopd5w5b] { + width: 2rem; + font-size: 1.1rem; + vertical-align: text-top; + top: -2px; +} + +.nav-item[b-w7xopd5w5b] { + font-size: 0.9rem; + padding-bottom: 0.5rem; +} + + .nav-item:first-of-type[b-w7xopd5w5b] { + padding-top: 1rem; + } + + .nav-item:last-of-type[b-w7xopd5w5b] { + padding-bottom: 1rem; + } + + .nav-item[b-w7xopd5w5b] a { + color: #d7d7d7; + border-radius: 4px; + height: 3rem; + display: flex; + align-items: center; + line-height: 3rem; + } + +.nav-item[b-w7xopd5w5b] a.active { + background-color: rgba(255,255,255,0.25); + color: white; +} + +.nav-item[b-w7xopd5w5b] a:hover { + background-color: rgba(255,255,255,0.1); + color: white; +} + +@media (min-width: 641px) { + .navbar-toggler[b-w7xopd5w5b] { + display: none; + } + + .collapse[b-w7xopd5w5b] { + /* Never collapse the sidebar for wide screens */ + display: block; + } + + .nav-scrollable[b-w7xopd5w5b] { + /* Allow sidebar to scroll for tall menus */ + height: calc(100vh - 3.5rem); + overflow-y: auto; + } +} diff --git a/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets.build.endpoints.json b/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..c4d27ec --- /dev/null +++ b/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets.build.endpoints.json @@ -0,0 +1,1154 @@ +{ + "Version": 1, + "ManifestType": "Build", + "Endpoints": [ + { + "Route": "DrinksMachineWebsite.0uicmg3r4l.styles.css", + "AssetFile": "DrinksMachineWebsite.styles.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3031" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"WPAMy+7Tb/NhQ+1MiYZzvmezx0hgWrgxk2sWGiEmdoc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 30 Nov 2024 19:30:04 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0uicmg3r4l" + }, + { + "Name": "integrity", + "Value": "sha256-WPAMy+7Tb/NhQ+1MiYZzvmezx0hgWrgxk2sWGiEmdoc=" + }, + { + "Name": "label", + "Value": "DrinksMachineWebsite.styles.css" + } + ] + }, + { + "Route": "DrinksMachineWebsite.styles.css", + "AssetFile": "DrinksMachineWebsite.styles.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3031" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"WPAMy+7Tb/NhQ+1MiYZzvmezx0hgWrgxk2sWGiEmdoc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 30 Nov 2024 19:30:04 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WPAMy+7Tb/NhQ+1MiYZzvmezx0hgWrgxk2sWGiEmdoc=" + } + ] + }, + { + "Route": "css/bootstrap/bootstrap.min.bpk8xqwxhs.css", + "AssetFile": "css/bootstrap/bootstrap.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "162720" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"z8OR40MowJ8GgK6P89Y+hiJK5+cclzFHzLhFQLL92bg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bpk8xqwxhs" + }, + { + "Name": "integrity", + "Value": "sha256-z8OR40MowJ8GgK6P89Y+hiJK5+cclzFHzLhFQLL92bg=" + }, + { + "Name": "label", + "Value": "css/bootstrap/bootstrap.min.css" + } + ] + }, + { + "Route": "css/bootstrap/bootstrap.min.css", + "AssetFile": "css/bootstrap/bootstrap.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "162720" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"z8OR40MowJ8GgK6P89Y+hiJK5+cclzFHzLhFQLL92bg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z8OR40MowJ8GgK6P89Y+hiJK5+cclzFHzLhFQLL92bg=" + } + ] + }, + { + "Route": "css/bootstrap/bootstrap.min.css.8inm30yfxf.map", + "AssetFile": "css/bootstrap/bootstrap.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "449111" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"gBwg2tmA0Ci2u54gMF1jNCVku6vznarkLS6D76htNNQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8inm30yfxf" + }, + { + "Name": "integrity", + "Value": "sha256-gBwg2tmA0Ci2u54gMF1jNCVku6vznarkLS6D76htNNQ=" + }, + { + "Name": "label", + "Value": "css/bootstrap/bootstrap.min.css.map" + } + ] + }, + { + "Route": "css/bootstrap/bootstrap.min.css.map", + "AssetFile": "css/bootstrap/bootstrap.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "449111" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"gBwg2tmA0Ci2u54gMF1jNCVku6vznarkLS6D76htNNQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gBwg2tmA0Ci2u54gMF1jNCVku6vznarkLS6D76htNNQ=" + } + ] + }, + { + "Route": "css/open-iconic/FONT-LICENSE", + "AssetFile": "css/open-iconic/FONT-LICENSE", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "4103" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "\"jA4J4h/k76zVxbFKEaWwFKJccmO0voOQ1DbUW+5YNlI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jA4J4h/k76zVxbFKEaWwFKJccmO0voOQ1DbUW+5YNlI=" + } + ] + }, + { + "Route": "css/open-iconic/FONT-LICENSE.48tmkg660f", + "AssetFile": "css/open-iconic/FONT-LICENSE", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "4103" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "\"jA4J4h/k76zVxbFKEaWwFKJccmO0voOQ1DbUW+5YNlI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "48tmkg660f" + }, + { + "Name": "integrity", + "Value": "sha256-jA4J4h/k76zVxbFKEaWwFKJccmO0voOQ1DbUW+5YNlI=" + }, + { + "Name": "label", + "Value": "css/open-iconic/FONT-LICENSE" + } + ] + }, + { + "Route": "css/open-iconic/ICON-LICENSE", + "AssetFile": "css/open-iconic/ICON-LICENSE", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "1093" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "\"aF5g/izareSj02F3MPSoTGNbcMBl9nmZKDe04zjU/ss=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aF5g/izareSj02F3MPSoTGNbcMBl9nmZKDe04zjU/ss=" + } + ] + }, + { + "Route": "css/open-iconic/ICON-LICENSE.4dwjve0o0b", + "AssetFile": "css/open-iconic/ICON-LICENSE", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1093" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "\"aF5g/izareSj02F3MPSoTGNbcMBl9nmZKDe04zjU/ss=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4dwjve0o0b" + }, + { + "Name": "integrity", + "Value": "sha256-aF5g/izareSj02F3MPSoTGNbcMBl9nmZKDe04zjU/ss=" + }, + { + "Name": "label", + "Value": "css/open-iconic/ICON-LICENSE" + } + ] + }, + { + "Route": "css/open-iconic/README.5bzwdl5l6x.md", + "AssetFile": "css/open-iconic/README.md", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "3655" + }, + { + "Name": "Content-Type", + "Value": "text/markdown" + }, + { + "Name": "ETag", + "Value": "\"waukoLqsiIAw/nXpsKkTHnhImmcPijcBEd2lzqzJNN0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5bzwdl5l6x" + }, + { + "Name": "integrity", + "Value": "sha256-waukoLqsiIAw/nXpsKkTHnhImmcPijcBEd2lzqzJNN0=" + }, + { + "Name": "label", + "Value": "css/open-iconic/README.md" + } + ] + }, + { + "Route": "css/open-iconic/README.md", + "AssetFile": "css/open-iconic/README.md", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "3655" + }, + { + "Name": "Content-Type", + "Value": "text/markdown" + }, + { + "Name": "ETag", + "Value": "\"waukoLqsiIAw/nXpsKkTHnhImmcPijcBEd2lzqzJNN0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-waukoLqsiIAw/nXpsKkTHnhImmcPijcBEd2lzqzJNN0=" + } + ] + }, + { + "Route": "css/open-iconic/font/css/open-iconic-bootstrap.min.cmapd0fi15.css", + "AssetFile": "css/open-iconic/font/css/open-iconic-bootstrap.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "9395" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"BJ/G+e+y7bQdrYkS2RBTyNfBHpA9IuGaPmf9htub5MQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cmapd0fi15" + }, + { + "Name": "integrity", + "Value": "sha256-BJ/G+e+y7bQdrYkS2RBTyNfBHpA9IuGaPmf9htub5MQ=" + }, + { + "Name": "label", + "Value": "css/open-iconic/font/css/open-iconic-bootstrap.min.css" + } + ] + }, + { + "Route": "css/open-iconic/font/css/open-iconic-bootstrap.min.css", + "AssetFile": "css/open-iconic/font/css/open-iconic-bootstrap.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "9395" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"BJ/G+e+y7bQdrYkS2RBTyNfBHpA9IuGaPmf9htub5MQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BJ/G+e+y7bQdrYkS2RBTyNfBHpA9IuGaPmf9htub5MQ=" + } + ] + }, + { + "Route": "css/open-iconic/font/fonts/open-iconic.0uw8dim9nl.eot", + "AssetFile": "css/open-iconic/font/fonts/open-iconic.eot", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "28196" + }, + { + "Name": "Content-Type", + "Value": "application/vnd.ms-fontobject" + }, + { + "Name": "ETag", + "Value": "\"OK3poGPgzKI2NzNgP07XMbJa3Dz6USoUh/chSkSvQpc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0uw8dim9nl" + }, + { + "Name": "integrity", + "Value": "sha256-OK3poGPgzKI2NzNgP07XMbJa3Dz6USoUh/chSkSvQpc=" + }, + { + "Name": "label", + "Value": "css/open-iconic/font/fonts/open-iconic.eot" + } + ] + }, + { + "Route": "css/open-iconic/font/fonts/open-iconic.eot", + "AssetFile": "css/open-iconic/font/fonts/open-iconic.eot", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "28196" + }, + { + "Name": "Content-Type", + "Value": "application/vnd.ms-fontobject" + }, + { + "Name": "ETag", + "Value": "\"OK3poGPgzKI2NzNgP07XMbJa3Dz6USoUh/chSkSvQpc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OK3poGPgzKI2NzNgP07XMbJa3Dz6USoUh/chSkSvQpc=" + } + ] + }, + { + "Route": "css/open-iconic/font/fonts/open-iconic.h4d0pazwgy.woff", + "AssetFile": "css/open-iconic/font/fonts/open-iconic.woff", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "14984" + }, + { + "Name": "Content-Type", + "Value": "application/font-woff" + }, + { + "Name": "ETag", + "Value": "\"cZPqVlRJfSNW0KaQ4+UPOXZ/v/QzXlejRDwUNdZIofI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h4d0pazwgy" + }, + { + "Name": "integrity", + "Value": "sha256-cZPqVlRJfSNW0KaQ4+UPOXZ/v/QzXlejRDwUNdZIofI=" + }, + { + "Name": "label", + "Value": "css/open-iconic/font/fonts/open-iconic.woff" + } + ] + }, + { + "Route": "css/open-iconic/font/fonts/open-iconic.ll5grcv8wv.ttf", + "AssetFile": "css/open-iconic/font/fonts/open-iconic.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "28028" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"p+RP8CV3vRK1YbIkNzq3rPo1jyETPnR07ULb+HVYL8w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ll5grcv8wv" + }, + { + "Name": "integrity", + "Value": "sha256-p+RP8CV3vRK1YbIkNzq3rPo1jyETPnR07ULb+HVYL8w=" + }, + { + "Name": "label", + "Value": "css/open-iconic/font/fonts/open-iconic.ttf" + } + ] + }, + { + "Route": "css/open-iconic/font/fonts/open-iconic.otf", + "AssetFile": "css/open-iconic/font/fonts/open-iconic.otf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "20996" + }, + { + "Name": "Content-Type", + "Value": "font/otf" + }, + { + "Name": "ETag", + "Value": "\"sDUtuZAEzWZyv/U1xl/9D3ehyU69JE+FvAcu5HQ+/a0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sDUtuZAEzWZyv/U1xl/9D3ehyU69JE+FvAcu5HQ+/a0=" + } + ] + }, + { + "Route": "css/open-iconic/font/fonts/open-iconic.sjnzgf7e1h.svg", + "AssetFile": "css/open-iconic/font/fonts/open-iconic.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "55332" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"+P1oQ5jPzOVJGC52E1oxGXIXxxCyMlqy6A9cNxGYzVk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sjnzgf7e1h" + }, + { + "Name": "integrity", + "Value": "sha256-+P1oQ5jPzOVJGC52E1oxGXIXxxCyMlqy6A9cNxGYzVk=" + }, + { + "Name": "label", + "Value": "css/open-iconic/font/fonts/open-iconic.svg" + } + ] + }, + { + "Route": "css/open-iconic/font/fonts/open-iconic.svg", + "AssetFile": "css/open-iconic/font/fonts/open-iconic.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "55332" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"+P1oQ5jPzOVJGC52E1oxGXIXxxCyMlqy6A9cNxGYzVk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+P1oQ5jPzOVJGC52E1oxGXIXxxCyMlqy6A9cNxGYzVk=" + } + ] + }, + { + "Route": "css/open-iconic/font/fonts/open-iconic.ttf", + "AssetFile": "css/open-iconic/font/fonts/open-iconic.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "28028" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"p+RP8CV3vRK1YbIkNzq3rPo1jyETPnR07ULb+HVYL8w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-p+RP8CV3vRK1YbIkNzq3rPo1jyETPnR07ULb+HVYL8w=" + } + ] + }, + { + "Route": "css/open-iconic/font/fonts/open-iconic.wk8x8xm0ah.otf", + "AssetFile": "css/open-iconic/font/fonts/open-iconic.otf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "20996" + }, + { + "Name": "Content-Type", + "Value": "font/otf" + }, + { + "Name": "ETag", + "Value": "\"sDUtuZAEzWZyv/U1xl/9D3ehyU69JE+FvAcu5HQ+/a0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wk8x8xm0ah" + }, + { + "Name": "integrity", + "Value": "sha256-sDUtuZAEzWZyv/U1xl/9D3ehyU69JE+FvAcu5HQ+/a0=" + }, + { + "Name": "label", + "Value": "css/open-iconic/font/fonts/open-iconic.otf" + } + ] + }, + { + "Route": "css/open-iconic/font/fonts/open-iconic.woff", + "AssetFile": "css/open-iconic/font/fonts/open-iconic.woff", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "14984" + }, + { + "Name": "Content-Type", + "Value": "application/font-woff" + }, + { + "Name": "ETag", + "Value": "\"cZPqVlRJfSNW0KaQ4+UPOXZ/v/QzXlejRDwUNdZIofI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cZPqVlRJfSNW0KaQ4+UPOXZ/v/QzXlejRDwUNdZIofI=" + } + ] + }, + { + "Route": "css/site.css", + "AssetFile": "css/site.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + }, + { + "Name": "Content-Length", + "Value": "2978" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Fx+c1youNLgejKLBM3S2fD6fcDOSv/D7tNQKm5gws6U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Fx+c1youNLgejKLBM3S2fD6fcDOSv/D7tNQKm5gws6U=" + } + ] + }, + { + "Route": "css/site.zh9s866nx2.css", + "AssetFile": "css/site.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "2978" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Fx+c1youNLgejKLBM3S2fD6fcDOSv/D7tNQKm5gws6U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zh9s866nx2" + }, + { + "Name": "integrity", + "Value": "sha256-Fx+c1youNLgejKLBM3S2fD6fcDOSv/D7tNQKm5gws6U=" + }, + { + "Name": "label", + "Value": "css/site.css" + } + ] + }, + { + "Route": "favicon.ifv42okdf2.png", + "AssetFile": "favicon.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + }, + { + "Name": "Content-Length", + "Value": "1148" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ifv42okdf2" + }, + { + "Name": "integrity", + "Value": "sha256-4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=" + }, + { + "Name": "label", + "Value": "favicon.png" + } + ] + }, + { + "Route": "favicon.png", + "AssetFile": "favicon.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + }, + { + "Name": "Content-Length", + "Value": "1148" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=" + } + ] + } + ] +}
\ No newline at end of file diff --git a/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets.build.json b/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets.build.json new file mode 100644 index 0000000..322300c --- /dev/null +++ b/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets.build.json @@ -0,0 +1,1567 @@ +{ + "Version": 1, + "Hash": "So1euhMVDMkx136+/gNTKPhrZtLPv1dztGp9OjVAMiI=", + "Source": "DrinksMachineWebsite", + "BasePath": "_content/DrinksMachineWebsite", + "Mode": "Default", + "ManifestType": "Build", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [ + { + "Name": "DrinksMachineWebsite\\wwwroot", + "Source": "DrinksMachineWebsite", + "ContentRoot": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\", + "BasePath": "_content/DrinksMachineWebsite", + "Pattern": "**" + } + ], + "Assets": [ + { + "Identity": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\obj\\Debug\\net7.0\\scopedcss\\bundle\\DrinksMachineWebsite.styles.css", + "SourceId": "DrinksMachineWebsite", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\obj\\Debug\\net7.0\\scopedcss\\bundle\\", + "BasePath": "_content/DrinksMachineWebsite", + "RelativePath": "DrinksMachineWebsite#[.{fingerprint}]?.styles.css", + "AssetKind": "All", + "AssetMode": "CurrentProject", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "ScopedCss", + "AssetTraitValue": "ApplicationBundle", + "Fingerprint": "0uicmg3r4l", + "Integrity": "WPAMy+7Tb/NhQ+1MiYZzvmezx0hgWrgxk2sWGiEmdoc=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\obj\\Debug\\net7.0\\scopedcss\\bundle\\DrinksMachineWebsite.styles.css" + }, + { + "Identity": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\obj\\Debug\\net7.0\\scopedcss\\projectbundle\\DrinksMachineWebsite.bundle.scp.css", + "SourceId": "DrinksMachineWebsite", + "SourceType": "Computed", + "ContentRoot": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\obj\\Debug\\net7.0\\scopedcss\\projectbundle\\", + "BasePath": "_content/DrinksMachineWebsite", + "RelativePath": "DrinksMachineWebsite#[.{fingerprint}]!.bundle.scp.css", + "AssetKind": "All", + "AssetMode": "Reference", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "ScopedCss", + "AssetTraitValue": "ProjectBundle", + "Fingerprint": "0uicmg3r4l", + "Integrity": "WPAMy+7Tb/NhQ+1MiYZzvmezx0hgWrgxk2sWGiEmdoc=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\obj\\Debug\\net7.0\\scopedcss\\projectbundle\\DrinksMachineWebsite.bundle.scp.css" + }, + { + "Identity": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\bootstrap\\bootstrap.min.css", + "SourceId": "DrinksMachineWebsite", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\", + "BasePath": "_content/DrinksMachineWebsite", + "RelativePath": "css/bootstrap/bootstrap.min#[.{fingerprint}]?.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "bpk8xqwxhs", + "Integrity": "z8OR40MowJ8GgK6P89Y+hiJK5+cclzFHzLhFQLL92bg=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\css\\bootstrap\\bootstrap.min.css" + }, + { + "Identity": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\bootstrap\\bootstrap.min.css.map", + "SourceId": "DrinksMachineWebsite", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\", + "BasePath": "_content/DrinksMachineWebsite", + "RelativePath": "css/bootstrap/bootstrap.min.css#[.{fingerprint}]?.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "8inm30yfxf", + "Integrity": "gBwg2tmA0Ci2u54gMF1jNCVku6vznarkLS6D76htNNQ=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\css\\bootstrap\\bootstrap.min.css.map" + }, + { + "Identity": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\font\\css\\open-iconic-bootstrap.min.css", + "SourceId": "DrinksMachineWebsite", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\", + "BasePath": "_content/DrinksMachineWebsite", + "RelativePath": "css/open-iconic/font/css/open-iconic-bootstrap.min#[.{fingerprint}]?.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "cmapd0fi15", + "Integrity": "BJ/G+e+y7bQdrYkS2RBTyNfBHpA9IuGaPmf9htub5MQ=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\css\\open-iconic\\font\\css\\open-iconic-bootstrap.min.css" + }, + { + "Identity": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.eot", + "SourceId": "DrinksMachineWebsite", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\", + "BasePath": "_content/DrinksMachineWebsite", + "RelativePath": "css/open-iconic/font/fonts/open-iconic#[.{fingerprint}]?.eot", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "0uw8dim9nl", + "Integrity": "OK3poGPgzKI2NzNgP07XMbJa3Dz6USoUh/chSkSvQpc=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.eot" + }, + { + "Identity": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.otf", + "SourceId": "DrinksMachineWebsite", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\", + "BasePath": "_content/DrinksMachineWebsite", + "RelativePath": "css/open-iconic/font/fonts/open-iconic#[.{fingerprint}]?.otf", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "wk8x8xm0ah", + "Integrity": "sDUtuZAEzWZyv/U1xl/9D3ehyU69JE+FvAcu5HQ+/a0=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.otf" + }, + { + "Identity": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.svg", + "SourceId": "DrinksMachineWebsite", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\", + "BasePath": "_content/DrinksMachineWebsite", + "RelativePath": "css/open-iconic/font/fonts/open-iconic#[.{fingerprint}]?.svg", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "sjnzgf7e1h", + "Integrity": "+P1oQ5jPzOVJGC52E1oxGXIXxxCyMlqy6A9cNxGYzVk=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.svg" + }, + { + "Identity": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.ttf", + "SourceId": "DrinksMachineWebsite", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\", + "BasePath": "_content/DrinksMachineWebsite", + "RelativePath": "css/open-iconic/font/fonts/open-iconic#[.{fingerprint}]?.ttf", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "ll5grcv8wv", + "Integrity": "p+RP8CV3vRK1YbIkNzq3rPo1jyETPnR07ULb+HVYL8w=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.ttf" + }, + { + "Identity": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.woff", + "SourceId": "DrinksMachineWebsite", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\", + "BasePath": "_content/DrinksMachineWebsite", + "RelativePath": "css/open-iconic/font/fonts/open-iconic#[.{fingerprint}]?.woff", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "h4d0pazwgy", + "Integrity": "cZPqVlRJfSNW0KaQ4+UPOXZ/v/QzXlejRDwUNdZIofI=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.woff" + }, + { + "Identity": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\FONT-LICENSE", + "SourceId": "DrinksMachineWebsite", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\", + "BasePath": "_content/DrinksMachineWebsite", + "RelativePath": "css/open-iconic/FONT-LICENSE#[.{fingerprint}]?", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "48tmkg660f", + "Integrity": "jA4J4h/k76zVxbFKEaWwFKJccmO0voOQ1DbUW+5YNlI=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\css\\open-iconic\\FONT-LICENSE" + }, + { + "Identity": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\ICON-LICENSE", + "SourceId": "DrinksMachineWebsite", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\", + "BasePath": "_content/DrinksMachineWebsite", + "RelativePath": "css/open-iconic/ICON-LICENSE#[.{fingerprint}]?", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "4dwjve0o0b", + "Integrity": "aF5g/izareSj02F3MPSoTGNbcMBl9nmZKDe04zjU/ss=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\css\\open-iconic\\ICON-LICENSE" + }, + { + "Identity": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\README.md", + "SourceId": "DrinksMachineWebsite", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\", + "BasePath": "_content/DrinksMachineWebsite", + "RelativePath": "css/open-iconic/README#[.{fingerprint}]?.md", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "5bzwdl5l6x", + "Integrity": "waukoLqsiIAw/nXpsKkTHnhImmcPijcBEd2lzqzJNN0=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\css\\open-iconic\\README.md" + }, + { + "Identity": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\site.css", + "SourceId": "DrinksMachineWebsite", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\", + "BasePath": "_content/DrinksMachineWebsite", + "RelativePath": "css/site#[.{fingerprint}]?.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "zh9s866nx2", + "Integrity": "Fx+c1youNLgejKLBM3S2fD6fcDOSv/D7tNQKm5gws6U=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\css\\site.css" + }, + { + "Identity": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\favicon.png", + "SourceId": "DrinksMachineWebsite", + "SourceType": "Discovered", + "ContentRoot": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\", + "BasePath": "_content/DrinksMachineWebsite", + "RelativePath": "favicon#[.{fingerprint}]?.png", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "ifv42okdf2", + "Integrity": "4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "wwwroot\\favicon.png" + } + ], + "Endpoints": [ + { + "Route": "css/bootstrap/bootstrap.min.bpk8xqwxhs.css", + "AssetFile": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\bootstrap\\bootstrap.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "162720" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"z8OR40MowJ8GgK6P89Y+hiJK5+cclzFHzLhFQLL92bg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "bpk8xqwxhs" + }, + { + "Name": "label", + "Value": "css/bootstrap/bootstrap.min.css" + }, + { + "Name": "integrity", + "Value": "sha256-z8OR40MowJ8GgK6P89Y+hiJK5+cclzFHzLhFQLL92bg=" + } + ] + }, + { + "Route": "css/bootstrap/bootstrap.min.css", + "AssetFile": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\bootstrap\\bootstrap.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "162720" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"z8OR40MowJ8GgK6P89Y+hiJK5+cclzFHzLhFQLL92bg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-z8OR40MowJ8GgK6P89Y+hiJK5+cclzFHzLhFQLL92bg=" + } + ] + }, + { + "Route": "css/bootstrap/bootstrap.min.css.8inm30yfxf.map", + "AssetFile": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\bootstrap\\bootstrap.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "449111" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"gBwg2tmA0Ci2u54gMF1jNCVku6vznarkLS6D76htNNQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "8inm30yfxf" + }, + { + "Name": "label", + "Value": "css/bootstrap/bootstrap.min.css.map" + }, + { + "Name": "integrity", + "Value": "sha256-gBwg2tmA0Ci2u54gMF1jNCVku6vznarkLS6D76htNNQ=" + } + ] + }, + { + "Route": "css/bootstrap/bootstrap.min.css.map", + "AssetFile": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\bootstrap\\bootstrap.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "449111" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"gBwg2tmA0Ci2u54gMF1jNCVku6vznarkLS6D76htNNQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-gBwg2tmA0Ci2u54gMF1jNCVku6vznarkLS6D76htNNQ=" + } + ] + }, + { + "Route": "css/open-iconic/font/css/open-iconic-bootstrap.min.cmapd0fi15.css", + "AssetFile": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\font\\css\\open-iconic-bootstrap.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "9395" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"BJ/G+e+y7bQdrYkS2RBTyNfBHpA9IuGaPmf9htub5MQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "cmapd0fi15" + }, + { + "Name": "label", + "Value": "css/open-iconic/font/css/open-iconic-bootstrap.min.css" + }, + { + "Name": "integrity", + "Value": "sha256-BJ/G+e+y7bQdrYkS2RBTyNfBHpA9IuGaPmf9htub5MQ=" + } + ] + }, + { + "Route": "css/open-iconic/font/css/open-iconic-bootstrap.min.css", + "AssetFile": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\font\\css\\open-iconic-bootstrap.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "9395" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"BJ/G+e+y7bQdrYkS2RBTyNfBHpA9IuGaPmf9htub5MQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-BJ/G+e+y7bQdrYkS2RBTyNfBHpA9IuGaPmf9htub5MQ=" + } + ] + }, + { + "Route": "css/open-iconic/font/fonts/open-iconic.0uw8dim9nl.eot", + "AssetFile": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.eot", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "28196" + }, + { + "Name": "Content-Type", + "Value": "application/vnd.ms-fontobject" + }, + { + "Name": "ETag", + "Value": "\"OK3poGPgzKI2NzNgP07XMbJa3Dz6USoUh/chSkSvQpc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0uw8dim9nl" + }, + { + "Name": "label", + "Value": "css/open-iconic/font/fonts/open-iconic.eot" + }, + { + "Name": "integrity", + "Value": "sha256-OK3poGPgzKI2NzNgP07XMbJa3Dz6USoUh/chSkSvQpc=" + } + ] + }, + { + "Route": "css/open-iconic/font/fonts/open-iconic.eot", + "AssetFile": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.eot", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "28196" + }, + { + "Name": "Content-Type", + "Value": "application/vnd.ms-fontobject" + }, + { + "Name": "ETag", + "Value": "\"OK3poGPgzKI2NzNgP07XMbJa3Dz6USoUh/chSkSvQpc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OK3poGPgzKI2NzNgP07XMbJa3Dz6USoUh/chSkSvQpc=" + } + ] + }, + { + "Route": "css/open-iconic/font/fonts/open-iconic.h4d0pazwgy.woff", + "AssetFile": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.woff", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "14984" + }, + { + "Name": "Content-Type", + "Value": "application/font-woff" + }, + { + "Name": "ETag", + "Value": "\"cZPqVlRJfSNW0KaQ4+UPOXZ/v/QzXlejRDwUNdZIofI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "h4d0pazwgy" + }, + { + "Name": "label", + "Value": "css/open-iconic/font/fonts/open-iconic.woff" + }, + { + "Name": "integrity", + "Value": "sha256-cZPqVlRJfSNW0KaQ4+UPOXZ/v/QzXlejRDwUNdZIofI=" + } + ] + }, + { + "Route": "css/open-iconic/font/fonts/open-iconic.ll5grcv8wv.ttf", + "AssetFile": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "28028" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"p+RP8CV3vRK1YbIkNzq3rPo1jyETPnR07ULb+HVYL8w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ll5grcv8wv" + }, + { + "Name": "label", + "Value": "css/open-iconic/font/fonts/open-iconic.ttf" + }, + { + "Name": "integrity", + "Value": "sha256-p+RP8CV3vRK1YbIkNzq3rPo1jyETPnR07ULb+HVYL8w=" + } + ] + }, + { + "Route": "css/open-iconic/font/fonts/open-iconic.otf", + "AssetFile": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.otf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "20996" + }, + { + "Name": "Content-Type", + "Value": "font/otf" + }, + { + "Name": "ETag", + "Value": "\"sDUtuZAEzWZyv/U1xl/9D3ehyU69JE+FvAcu5HQ+/a0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-sDUtuZAEzWZyv/U1xl/9D3ehyU69JE+FvAcu5HQ+/a0=" + } + ] + }, + { + "Route": "css/open-iconic/font/fonts/open-iconic.sjnzgf7e1h.svg", + "AssetFile": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "55332" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"+P1oQ5jPzOVJGC52E1oxGXIXxxCyMlqy6A9cNxGYzVk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "sjnzgf7e1h" + }, + { + "Name": "label", + "Value": "css/open-iconic/font/fonts/open-iconic.svg" + }, + { + "Name": "integrity", + "Value": "sha256-+P1oQ5jPzOVJGC52E1oxGXIXxxCyMlqy6A9cNxGYzVk=" + } + ] + }, + { + "Route": "css/open-iconic/font/fonts/open-iconic.svg", + "AssetFile": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.svg", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "55332" + }, + { + "Name": "Content-Type", + "Value": "image/svg+xml" + }, + { + "Name": "ETag", + "Value": "\"+P1oQ5jPzOVJGC52E1oxGXIXxxCyMlqy6A9cNxGYzVk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-+P1oQ5jPzOVJGC52E1oxGXIXxxCyMlqy6A9cNxGYzVk=" + } + ] + }, + { + "Route": "css/open-iconic/font/fonts/open-iconic.ttf", + "AssetFile": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.ttf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "28028" + }, + { + "Name": "Content-Type", + "Value": "application/x-font-ttf" + }, + { + "Name": "ETag", + "Value": "\"p+RP8CV3vRK1YbIkNzq3rPo1jyETPnR07ULb+HVYL8w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-p+RP8CV3vRK1YbIkNzq3rPo1jyETPnR07ULb+HVYL8w=" + } + ] + }, + { + "Route": "css/open-iconic/font/fonts/open-iconic.wk8x8xm0ah.otf", + "AssetFile": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.otf", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "20996" + }, + { + "Name": "Content-Type", + "Value": "font/otf" + }, + { + "Name": "ETag", + "Value": "\"sDUtuZAEzWZyv/U1xl/9D3ehyU69JE+FvAcu5HQ+/a0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "wk8x8xm0ah" + }, + { + "Name": "label", + "Value": "css/open-iconic/font/fonts/open-iconic.otf" + }, + { + "Name": "integrity", + "Value": "sha256-sDUtuZAEzWZyv/U1xl/9D3ehyU69JE+FvAcu5HQ+/a0=" + } + ] + }, + { + "Route": "css/open-iconic/font/fonts/open-iconic.woff", + "AssetFile": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.woff", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "14984" + }, + { + "Name": "Content-Type", + "Value": "application/font-woff" + }, + { + "Name": "ETag", + "Value": "\"cZPqVlRJfSNW0KaQ4+UPOXZ/v/QzXlejRDwUNdZIofI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-cZPqVlRJfSNW0KaQ4+UPOXZ/v/QzXlejRDwUNdZIofI=" + } + ] + }, + { + "Route": "css/open-iconic/FONT-LICENSE", + "AssetFile": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\FONT-LICENSE", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "4103" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "\"jA4J4h/k76zVxbFKEaWwFKJccmO0voOQ1DbUW+5YNlI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-jA4J4h/k76zVxbFKEaWwFKJccmO0voOQ1DbUW+5YNlI=" + } + ] + }, + { + "Route": "css/open-iconic/FONT-LICENSE.48tmkg660f", + "AssetFile": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\FONT-LICENSE", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "4103" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "\"jA4J4h/k76zVxbFKEaWwFKJccmO0voOQ1DbUW+5YNlI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "48tmkg660f" + }, + { + "Name": "label", + "Value": "css/open-iconic/FONT-LICENSE" + }, + { + "Name": "integrity", + "Value": "sha256-jA4J4h/k76zVxbFKEaWwFKJccmO0voOQ1DbUW+5YNlI=" + } + ] + }, + { + "Route": "css/open-iconic/ICON-LICENSE", + "AssetFile": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\ICON-LICENSE", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1093" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "\"aF5g/izareSj02F3MPSoTGNbcMBl9nmZKDe04zjU/ss=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aF5g/izareSj02F3MPSoTGNbcMBl9nmZKDe04zjU/ss=" + } + ] + }, + { + "Route": "css/open-iconic/ICON-LICENSE.4dwjve0o0b", + "AssetFile": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\ICON-LICENSE", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1093" + }, + { + "Name": "Content-Type", + "Value": "application/octet-stream" + }, + { + "Name": "ETag", + "Value": "\"aF5g/izareSj02F3MPSoTGNbcMBl9nmZKDe04zjU/ss=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "4dwjve0o0b" + }, + { + "Name": "label", + "Value": "css/open-iconic/ICON-LICENSE" + }, + { + "Name": "integrity", + "Value": "sha256-aF5g/izareSj02F3MPSoTGNbcMBl9nmZKDe04zjU/ss=" + } + ] + }, + { + "Route": "css/open-iconic/README.5bzwdl5l6x.md", + "AssetFile": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\README.md", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3655" + }, + { + "Name": "Content-Type", + "Value": "text/markdown" + }, + { + "Name": "ETag", + "Value": "\"waukoLqsiIAw/nXpsKkTHnhImmcPijcBEd2lzqzJNN0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "5bzwdl5l6x" + }, + { + "Name": "label", + "Value": "css/open-iconic/README.md" + }, + { + "Name": "integrity", + "Value": "sha256-waukoLqsiIAw/nXpsKkTHnhImmcPijcBEd2lzqzJNN0=" + } + ] + }, + { + "Route": "css/open-iconic/README.md", + "AssetFile": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\README.md", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3655" + }, + { + "Name": "Content-Type", + "Value": "text/markdown" + }, + { + "Name": "ETag", + "Value": "\"waukoLqsiIAw/nXpsKkTHnhImmcPijcBEd2lzqzJNN0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-waukoLqsiIAw/nXpsKkTHnhImmcPijcBEd2lzqzJNN0=" + } + ] + }, + { + "Route": "css/site.css", + "AssetFile": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\site.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "2978" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Fx+c1youNLgejKLBM3S2fD6fcDOSv/D7tNQKm5gws6U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Fx+c1youNLgejKLBM3S2fD6fcDOSv/D7tNQKm5gws6U=" + } + ] + }, + { + "Route": "css/site.zh9s866nx2.css", + "AssetFile": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\site.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "2978" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Fx+c1youNLgejKLBM3S2fD6fcDOSv/D7tNQKm5gws6U=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "zh9s866nx2" + }, + { + "Name": "label", + "Value": "css/site.css" + }, + { + "Name": "integrity", + "Value": "sha256-Fx+c1youNLgejKLBM3S2fD6fcDOSv/D7tNQKm5gws6U=" + } + ] + }, + { + "Route": "DrinksMachineWebsite.0uicmg3r4l.bundle.scp.css", + "AssetFile": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\obj\\Debug\\net7.0\\scopedcss\\projectbundle\\DrinksMachineWebsite.bundle.scp.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3031" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"WPAMy+7Tb/NhQ+1MiYZzvmezx0hgWrgxk2sWGiEmdoc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 30 Nov 2024 19:30:04 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0uicmg3r4l" + }, + { + "Name": "label", + "Value": "DrinksMachineWebsite.bundle.scp.css" + }, + { + "Name": "integrity", + "Value": "sha256-WPAMy+7Tb/NhQ+1MiYZzvmezx0hgWrgxk2sWGiEmdoc=" + } + ] + }, + { + "Route": "DrinksMachineWebsite.0uicmg3r4l.styles.css", + "AssetFile": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\obj\\Debug\\net7.0\\scopedcss\\bundle\\DrinksMachineWebsite.styles.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3031" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"WPAMy+7Tb/NhQ+1MiYZzvmezx0hgWrgxk2sWGiEmdoc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 30 Nov 2024 19:30:04 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "0uicmg3r4l" + }, + { + "Name": "label", + "Value": "DrinksMachineWebsite.styles.css" + }, + { + "Name": "integrity", + "Value": "sha256-WPAMy+7Tb/NhQ+1MiYZzvmezx0hgWrgxk2sWGiEmdoc=" + } + ] + }, + { + "Route": "DrinksMachineWebsite.bundle.scp.css", + "AssetFile": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\obj\\Debug\\net7.0\\scopedcss\\projectbundle\\DrinksMachineWebsite.bundle.scp.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3031" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"WPAMy+7Tb/NhQ+1MiYZzvmezx0hgWrgxk2sWGiEmdoc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 30 Nov 2024 19:30:04 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WPAMy+7Tb/NhQ+1MiYZzvmezx0hgWrgxk2sWGiEmdoc=" + } + ] + }, + { + "Route": "DrinksMachineWebsite.styles.css", + "AssetFile": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\obj\\Debug\\net7.0\\scopedcss\\bundle\\DrinksMachineWebsite.styles.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3031" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"WPAMy+7Tb/NhQ+1MiYZzvmezx0hgWrgxk2sWGiEmdoc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 30 Nov 2024 19:30:04 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WPAMy+7Tb/NhQ+1MiYZzvmezx0hgWrgxk2sWGiEmdoc=" + } + ] + }, + { + "Route": "favicon.ifv42okdf2.png", + "AssetFile": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\favicon.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1148" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=31536000, immutable" + } + ], + "EndpointProperties": [ + { + "Name": "fingerprint", + "Value": "ifv42okdf2" + }, + { + "Name": "label", + "Value": "favicon.png" + }, + { + "Name": "integrity", + "Value": "sha256-4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=" + } + ] + }, + { + "Route": "favicon.png", + "AssetFile": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\favicon.png", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1148" + }, + { + "Name": "Content-Type", + "Value": "image/png" + }, + { + "Name": "ETag", + "Value": "\"4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=\"" + }, + { + "Name": "Last-Modified", + "Value": "Sat, 14 Oct 2023 15:35:23 GMT" + }, + { + "Name": "Cache-Control", + "Value": "max-age=3600, must-revalidate" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=" + } + ] + } + ] +}
\ No newline at end of file diff --git a/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets.development.json b/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets.development.json new file mode 100644 index 0000000..bc34e84 --- /dev/null +++ b/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets.development.json @@ -0,0 +1 @@ +{"ContentRoots":["C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\","C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\obj\\Debug\\net7.0\\scopedcss\\bundle\\"],"Root":{"Children":{"css":{"Children":{"bootstrap":{"Children":{"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap/bootstrap.min.css.map"},"Patterns":null}},"Asset":null,"Patterns":null},"open-iconic":{"Children":{"FONT-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/FONT-LICENSE"},"Patterns":null},"font":{"Children":{"css":{"Children":{"open-iconic-bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/css/open-iconic-bootstrap.min.css"},"Patterns":null}},"Asset":null,"Patterns":null},"fonts":{"Children":{"open-iconic.eot":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.eot"},"Patterns":null},"open-iconic.otf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.otf"},"Patterns":null},"open-iconic.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.svg"},"Patterns":null},"open-iconic.ttf":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.ttf"},"Patterns":null},"open-iconic.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/font/fonts/open-iconic.woff"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"ICON-LICENSE":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/ICON-LICENSE"},"Patterns":null},"README.md":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/open-iconic/README.md"},"Patterns":null}},"Asset":null,"Patterns":null},"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"favicon.png":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.png"},"Patterns":null},"DrinksMachineWebsite.styles.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"DrinksMachineWebsite.styles.css"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
\ No newline at end of file diff --git a/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets.pack.json b/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets.pack.json new file mode 100644 index 0000000..734e1a7 --- /dev/null +++ b/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets.pack.json @@ -0,0 +1,81 @@ +{ + "Files": [ + { + "Id": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\obj\\Debug\\net7.0\\scopedcss\\projectbundle\\DrinksMachineWebsite.bundle.scp.css", + "PackagePath": "staticwebassets\\DrinksMachineWebsite.0uicmg3r4l.bundle.scp.css" + }, + { + "Id": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\bootstrap\\bootstrap.min.css", + "PackagePath": "staticwebassets\\css\\bootstrap\\bootstrap.min.css" + }, + { + "Id": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\bootstrap\\bootstrap.min.css.map", + "PackagePath": "staticwebassets\\css\\bootstrap\\bootstrap.min.css.map" + }, + { + "Id": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\FONT-LICENSE", + "PackagePath": "staticwebassets\\css\\open-iconic" + }, + { + "Id": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\ICON-LICENSE", + "PackagePath": "staticwebassets\\css\\open-iconic" + }, + { + "Id": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\README.md", + "PackagePath": "staticwebassets\\css\\open-iconic\\README.md" + }, + { + "Id": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\font\\css\\open-iconic-bootstrap.min.css", + "PackagePath": "staticwebassets\\css\\open-iconic\\font\\css\\open-iconic-bootstrap.min.css" + }, + { + "Id": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.eot", + "PackagePath": "staticwebassets\\css\\open-iconic\\font\\fonts\\open-iconic.eot" + }, + { + "Id": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.otf", + "PackagePath": "staticwebassets\\css\\open-iconic\\font\\fonts\\open-iconic.otf" + }, + { + "Id": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.svg", + "PackagePath": "staticwebassets\\css\\open-iconic\\font\\fonts\\open-iconic.svg" + }, + { + "Id": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.ttf", + "PackagePath": "staticwebassets\\css\\open-iconic\\font\\fonts\\open-iconic.ttf" + }, + { + "Id": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\open-iconic\\font\\fonts\\open-iconic.woff", + "PackagePath": "staticwebassets\\css\\open-iconic\\font\\fonts\\open-iconic.woff" + }, + { + "Id": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\css\\site.css", + "PackagePath": "staticwebassets\\css\\site.css" + }, + { + "Id": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\wwwroot\\favicon.png", + "PackagePath": "staticwebassets\\favicon.png" + }, + { + "Id": "obj\\Debug\\net7.0\\staticwebassets\\msbuild.DrinksMachineWebsite.Microsoft.AspNetCore.StaticWebAssetEndpoints.props", + "PackagePath": "build\\Microsoft.AspNetCore.StaticWebAssetEndpoints.props" + }, + { + "Id": "obj\\Debug\\net7.0\\staticwebassets\\msbuild.DrinksMachineWebsite.Microsoft.AspNetCore.StaticWebAssets.props", + "PackagePath": "build\\Microsoft.AspNetCore.StaticWebAssets.props" + }, + { + "Id": "obj\\Debug\\net7.0\\staticwebassets\\msbuild.build.DrinksMachineWebsite.props", + "PackagePath": "build\\DrinksMachineWebsite.props" + }, + { + "Id": "obj\\Debug\\net7.0\\staticwebassets\\msbuild.buildMultiTargeting.DrinksMachineWebsite.props", + "PackagePath": "buildMultiTargeting\\DrinksMachineWebsite.props" + }, + { + "Id": "obj\\Debug\\net7.0\\staticwebassets\\msbuild.buildTransitive.DrinksMachineWebsite.props", + "PackagePath": "buildTransitive\\DrinksMachineWebsite.props" + } + ], + "ElementsToRemove": [] +}
\ No newline at end of file diff --git a/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets.references.upToDateCheck.txt b/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets.references.upToDateCheck.txt new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets.references.upToDateCheck.txt diff --git a/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets.removed.txt b/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets.removed.txt new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets.removed.txt diff --git a/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets.upToDateCheck.txt b/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets.upToDateCheck.txt new file mode 100644 index 0000000..74e6f98 --- /dev/null +++ b/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets.upToDateCheck.txt @@ -0,0 +1,13 @@ +wwwroot\css\bootstrap\bootstrap.min.css +wwwroot\css\bootstrap\bootstrap.min.css.map +wwwroot\css\open-iconic\font\css\open-iconic-bootstrap.min.css +wwwroot\css\open-iconic\font\fonts\open-iconic.eot +wwwroot\css\open-iconic\font\fonts\open-iconic.otf +wwwroot\css\open-iconic\font\fonts\open-iconic.svg +wwwroot\css\open-iconic\font\fonts\open-iconic.ttf +wwwroot\css\open-iconic\font\fonts\open-iconic.woff +wwwroot\css\open-iconic\FONT-LICENSE +wwwroot\css\open-iconic\ICON-LICENSE +wwwroot\css\open-iconic\README.md +wwwroot\css\site.css +wwwroot\favicon.png diff --git a/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets/msbuild.DrinksMachineWebsite.Microsoft.AspNetCore.StaticWebAssetEndpoints.props b/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets/msbuild.DrinksMachineWebsite.Microsoft.AspNetCore.StaticWebAssetEndpoints.props new file mode 100644 index 0000000..fe31c2f --- /dev/null +++ b/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets/msbuild.DrinksMachineWebsite.Microsoft.AspNetCore.StaticWebAssetEndpoints.props @@ -0,0 +1,172 @@ +<Project> + <ItemGroup> + <StaticWebAssetEndpoint Include="_content/DrinksMachineWebsite/css/bootstrap/bootstrap.min.bpk8xqwxhs.css"> + <AssetFile>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\bootstrap\bootstrap.min.css'))</AssetFile> + <Selectors><![CDATA[[]]]></Selectors> + <EndpointProperties><![CDATA[[{"Name":"fingerprint","Value":"bpk8xqwxhs"},{"Name":"integrity","Value":"sha256-z8OR40MowJ8GgK6P89Y\u002BhiJK5\u002BcclzFHzLhFQLL92bg="},{"Name":"label","Value":"_content/DrinksMachineWebsite/css/bootstrap/bootstrap.min.css"}]]]></EndpointProperties> + <ResponseHeaders><![CDATA[[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"162720"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\u0022z8OR40MowJ8GgK6P89Y\u002BhiJK5\u002BcclzFHzLhFQLL92bg=\u0022"},{"Name":"Last-Modified","Value":"Sat, 14 Oct 2023 15:35:23 GMT"}]]]></ResponseHeaders> + </StaticWebAssetEndpoint> + <StaticWebAssetEndpoint Include="_content/DrinksMachineWebsite/css/bootstrap/bootstrap.min.css"> + <AssetFile>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\bootstrap\bootstrap.min.css'))</AssetFile> + <Selectors><![CDATA[[]]]></Selectors> + <EndpointProperties><![CDATA[[{"Name":"integrity","Value":"sha256-z8OR40MowJ8GgK6P89Y\u002BhiJK5\u002BcclzFHzLhFQLL92bg="}]]]></EndpointProperties> + <ResponseHeaders><![CDATA[[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"162720"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\u0022z8OR40MowJ8GgK6P89Y\u002BhiJK5\u002BcclzFHzLhFQLL92bg=\u0022"},{"Name":"Last-Modified","Value":"Sat, 14 Oct 2023 15:35:23 GMT"}]]]></ResponseHeaders> + </StaticWebAssetEndpoint> + <StaticWebAssetEndpoint Include="_content/DrinksMachineWebsite/css/bootstrap/bootstrap.min.css.8inm30yfxf.map"> + <AssetFile>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\bootstrap\bootstrap.min.css.map'))</AssetFile> + <Selectors><![CDATA[[]]]></Selectors> + <EndpointProperties><![CDATA[[{"Name":"fingerprint","Value":"8inm30yfxf"},{"Name":"integrity","Value":"sha256-gBwg2tmA0Ci2u54gMF1jNCVku6vznarkLS6D76htNNQ="},{"Name":"label","Value":"_content/DrinksMachineWebsite/css/bootstrap/bootstrap.min.css.map"}]]]></EndpointProperties> + <ResponseHeaders><![CDATA[[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"449111"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\u0022gBwg2tmA0Ci2u54gMF1jNCVku6vznarkLS6D76htNNQ=\u0022"},{"Name":"Last-Modified","Value":"Sat, 14 Oct 2023 15:35:23 GMT"}]]]></ResponseHeaders> + </StaticWebAssetEndpoint> + <StaticWebAssetEndpoint Include="_content/DrinksMachineWebsite/css/bootstrap/bootstrap.min.css.map"> + <AssetFile>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\bootstrap\bootstrap.min.css.map'))</AssetFile> + <Selectors><![CDATA[[]]]></Selectors> + <EndpointProperties><![CDATA[[{"Name":"integrity","Value":"sha256-gBwg2tmA0Ci2u54gMF1jNCVku6vznarkLS6D76htNNQ="}]]]></EndpointProperties> + <ResponseHeaders><![CDATA[[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"449111"},{"Name":"Content-Type","Value":"text/plain"},{"Name":"ETag","Value":"\u0022gBwg2tmA0Ci2u54gMF1jNCVku6vznarkLS6D76htNNQ=\u0022"},{"Name":"Last-Modified","Value":"Sat, 14 Oct 2023 15:35:23 GMT"}]]]></ResponseHeaders> + </StaticWebAssetEndpoint> + <StaticWebAssetEndpoint Include="_content/DrinksMachineWebsite/css/open-iconic/FONT-LICENSE"> + <AssetFile>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\FONT-LICENSE'))</AssetFile> + <Selectors><![CDATA[[]]]></Selectors> + <EndpointProperties><![CDATA[[{"Name":"integrity","Value":"sha256-jA4J4h/k76zVxbFKEaWwFKJccmO0voOQ1DbUW\u002B5YNlI="}]]]></EndpointProperties> + <ResponseHeaders><![CDATA[[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"4103"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\u0022jA4J4h/k76zVxbFKEaWwFKJccmO0voOQ1DbUW\u002B5YNlI=\u0022"},{"Name":"Last-Modified","Value":"Sat, 14 Oct 2023 15:35:23 GMT"}]]]></ResponseHeaders> + </StaticWebAssetEndpoint> + <StaticWebAssetEndpoint Include="_content/DrinksMachineWebsite/css/open-iconic/FONT-LICENSE.48tmkg660f"> + <AssetFile>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\FONT-LICENSE'))</AssetFile> + <Selectors><![CDATA[[]]]></Selectors> + <EndpointProperties><![CDATA[[{"Name":"fingerprint","Value":"48tmkg660f"},{"Name":"integrity","Value":"sha256-jA4J4h/k76zVxbFKEaWwFKJccmO0voOQ1DbUW\u002B5YNlI="},{"Name":"label","Value":"_content/DrinksMachineWebsite/css/open-iconic/FONT-LICENSE"}]]]></EndpointProperties> + <ResponseHeaders><![CDATA[[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"4103"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\u0022jA4J4h/k76zVxbFKEaWwFKJccmO0voOQ1DbUW\u002B5YNlI=\u0022"},{"Name":"Last-Modified","Value":"Sat, 14 Oct 2023 15:35:23 GMT"}]]]></ResponseHeaders> + </StaticWebAssetEndpoint> + <StaticWebAssetEndpoint Include="_content/DrinksMachineWebsite/css/open-iconic/font/css/open-iconic-bootstrap.min.cmapd0fi15.css"> + <AssetFile>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\font\css\open-iconic-bootstrap.min.css'))</AssetFile> + <Selectors><![CDATA[[]]]></Selectors> + <EndpointProperties><![CDATA[[{"Name":"fingerprint","Value":"cmapd0fi15"},{"Name":"integrity","Value":"sha256-BJ/G\u002Be\u002By7bQdrYkS2RBTyNfBHpA9IuGaPmf9htub5MQ="},{"Name":"label","Value":"_content/DrinksMachineWebsite/css/open-iconic/font/css/open-iconic-bootstrap.min.css"}]]]></EndpointProperties> + <ResponseHeaders><![CDATA[[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"9395"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\u0022BJ/G\u002Be\u002By7bQdrYkS2RBTyNfBHpA9IuGaPmf9htub5MQ=\u0022"},{"Name":"Last-Modified","Value":"Sat, 14 Oct 2023 15:35:23 GMT"}]]]></ResponseHeaders> + </StaticWebAssetEndpoint> + <StaticWebAssetEndpoint Include="_content/DrinksMachineWebsite/css/open-iconic/font/css/open-iconic-bootstrap.min.css"> + <AssetFile>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\font\css\open-iconic-bootstrap.min.css'))</AssetFile> + <Selectors><![CDATA[[]]]></Selectors> + <EndpointProperties><![CDATA[[{"Name":"integrity","Value":"sha256-BJ/G\u002Be\u002By7bQdrYkS2RBTyNfBHpA9IuGaPmf9htub5MQ="}]]]></EndpointProperties> + <ResponseHeaders><![CDATA[[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"9395"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\u0022BJ/G\u002Be\u002By7bQdrYkS2RBTyNfBHpA9IuGaPmf9htub5MQ=\u0022"},{"Name":"Last-Modified","Value":"Sat, 14 Oct 2023 15:35:23 GMT"}]]]></ResponseHeaders> + </StaticWebAssetEndpoint> + <StaticWebAssetEndpoint Include="_content/DrinksMachineWebsite/css/open-iconic/font/fonts/open-iconic.0uw8dim9nl.eot"> + <AssetFile>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\font\fonts\open-iconic.eot'))</AssetFile> + <Selectors><![CDATA[[]]]></Selectors> + <EndpointProperties><![CDATA[[{"Name":"fingerprint","Value":"0uw8dim9nl"},{"Name":"integrity","Value":"sha256-OK3poGPgzKI2NzNgP07XMbJa3Dz6USoUh/chSkSvQpc="},{"Name":"label","Value":"_content/DrinksMachineWebsite/css/open-iconic/font/fonts/open-iconic.eot"}]]]></EndpointProperties> + <ResponseHeaders><![CDATA[[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"28196"},{"Name":"Content-Type","Value":"application/vnd.ms-fontobject"},{"Name":"ETag","Value":"\u0022OK3poGPgzKI2NzNgP07XMbJa3Dz6USoUh/chSkSvQpc=\u0022"},{"Name":"Last-Modified","Value":"Sat, 14 Oct 2023 15:35:23 GMT"}]]]></ResponseHeaders> + </StaticWebAssetEndpoint> + <StaticWebAssetEndpoint Include="_content/DrinksMachineWebsite/css/open-iconic/font/fonts/open-iconic.eot"> + <AssetFile>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\font\fonts\open-iconic.eot'))</AssetFile> + <Selectors><![CDATA[[]]]></Selectors> + <EndpointProperties><![CDATA[[{"Name":"integrity","Value":"sha256-OK3poGPgzKI2NzNgP07XMbJa3Dz6USoUh/chSkSvQpc="}]]]></EndpointProperties> + <ResponseHeaders><![CDATA[[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"28196"},{"Name":"Content-Type","Value":"application/vnd.ms-fontobject"},{"Name":"ETag","Value":"\u0022OK3poGPgzKI2NzNgP07XMbJa3Dz6USoUh/chSkSvQpc=\u0022"},{"Name":"Last-Modified","Value":"Sat, 14 Oct 2023 15:35:23 GMT"}]]]></ResponseHeaders> + </StaticWebAssetEndpoint> + <StaticWebAssetEndpoint Include="_content/DrinksMachineWebsite/css/open-iconic/font/fonts/open-iconic.h4d0pazwgy.woff"> + <AssetFile>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\font\fonts\open-iconic.woff'))</AssetFile> + <Selectors><![CDATA[[]]]></Selectors> + <EndpointProperties><![CDATA[[{"Name":"fingerprint","Value":"h4d0pazwgy"},{"Name":"integrity","Value":"sha256-cZPqVlRJfSNW0KaQ4\u002BUPOXZ/v/QzXlejRDwUNdZIofI="},{"Name":"label","Value":"_content/DrinksMachineWebsite/css/open-iconic/font/fonts/open-iconic.woff"}]]]></EndpointProperties> + <ResponseHeaders><![CDATA[[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"14984"},{"Name":"Content-Type","Value":"application/font-woff"},{"Name":"ETag","Value":"\u0022cZPqVlRJfSNW0KaQ4\u002BUPOXZ/v/QzXlejRDwUNdZIofI=\u0022"},{"Name":"Last-Modified","Value":"Sat, 14 Oct 2023 15:35:23 GMT"}]]]></ResponseHeaders> + </StaticWebAssetEndpoint> + <StaticWebAssetEndpoint Include="_content/DrinksMachineWebsite/css/open-iconic/font/fonts/open-iconic.ll5grcv8wv.ttf"> + <AssetFile>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\font\fonts\open-iconic.ttf'))</AssetFile> + <Selectors><![CDATA[[]]]></Selectors> + <EndpointProperties><![CDATA[[{"Name":"fingerprint","Value":"ll5grcv8wv"},{"Name":"integrity","Value":"sha256-p\u002BRP8CV3vRK1YbIkNzq3rPo1jyETPnR07ULb\u002BHVYL8w="},{"Name":"label","Value":"_content/DrinksMachineWebsite/css/open-iconic/font/fonts/open-iconic.ttf"}]]]></EndpointProperties> + <ResponseHeaders><![CDATA[[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"28028"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\u0022p\u002BRP8CV3vRK1YbIkNzq3rPo1jyETPnR07ULb\u002BHVYL8w=\u0022"},{"Name":"Last-Modified","Value":"Sat, 14 Oct 2023 15:35:23 GMT"}]]]></ResponseHeaders> + </StaticWebAssetEndpoint> + <StaticWebAssetEndpoint Include="_content/DrinksMachineWebsite/css/open-iconic/font/fonts/open-iconic.otf"> + <AssetFile>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\font\fonts\open-iconic.otf'))</AssetFile> + <Selectors><![CDATA[[]]]></Selectors> + <EndpointProperties><![CDATA[[{"Name":"integrity","Value":"sha256-sDUtuZAEzWZyv/U1xl/9D3ehyU69JE\u002BFvAcu5HQ\u002B/a0="}]]]></EndpointProperties> + <ResponseHeaders><![CDATA[[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"20996"},{"Name":"Content-Type","Value":"font/otf"},{"Name":"ETag","Value":"\u0022sDUtuZAEzWZyv/U1xl/9D3ehyU69JE\u002BFvAcu5HQ\u002B/a0=\u0022"},{"Name":"Last-Modified","Value":"Sat, 14 Oct 2023 15:35:23 GMT"}]]]></ResponseHeaders> + </StaticWebAssetEndpoint> + <StaticWebAssetEndpoint Include="_content/DrinksMachineWebsite/css/open-iconic/font/fonts/open-iconic.sjnzgf7e1h.svg"> + <AssetFile>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\font\fonts\open-iconic.svg'))</AssetFile> + <Selectors><![CDATA[[]]]></Selectors> + <EndpointProperties><![CDATA[[{"Name":"fingerprint","Value":"sjnzgf7e1h"},{"Name":"integrity","Value":"sha256-\u002BP1oQ5jPzOVJGC52E1oxGXIXxxCyMlqy6A9cNxGYzVk="},{"Name":"label","Value":"_content/DrinksMachineWebsite/css/open-iconic/font/fonts/open-iconic.svg"}]]]></EndpointProperties> + <ResponseHeaders><![CDATA[[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"55332"},{"Name":"Content-Type","Value":"image/svg\u002Bxml"},{"Name":"ETag","Value":"\u0022\u002BP1oQ5jPzOVJGC52E1oxGXIXxxCyMlqy6A9cNxGYzVk=\u0022"},{"Name":"Last-Modified","Value":"Sat, 14 Oct 2023 15:35:23 GMT"}]]]></ResponseHeaders> + </StaticWebAssetEndpoint> + <StaticWebAssetEndpoint Include="_content/DrinksMachineWebsite/css/open-iconic/font/fonts/open-iconic.svg"> + <AssetFile>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\font\fonts\open-iconic.svg'))</AssetFile> + <Selectors><![CDATA[[]]]></Selectors> + <EndpointProperties><![CDATA[[{"Name":"integrity","Value":"sha256-\u002BP1oQ5jPzOVJGC52E1oxGXIXxxCyMlqy6A9cNxGYzVk="}]]]></EndpointProperties> + <ResponseHeaders><![CDATA[[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"55332"},{"Name":"Content-Type","Value":"image/svg\u002Bxml"},{"Name":"ETag","Value":"\u0022\u002BP1oQ5jPzOVJGC52E1oxGXIXxxCyMlqy6A9cNxGYzVk=\u0022"},{"Name":"Last-Modified","Value":"Sat, 14 Oct 2023 15:35:23 GMT"}]]]></ResponseHeaders> + </StaticWebAssetEndpoint> + <StaticWebAssetEndpoint Include="_content/DrinksMachineWebsite/css/open-iconic/font/fonts/open-iconic.ttf"> + <AssetFile>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\font\fonts\open-iconic.ttf'))</AssetFile> + <Selectors><![CDATA[[]]]></Selectors> + <EndpointProperties><![CDATA[[{"Name":"integrity","Value":"sha256-p\u002BRP8CV3vRK1YbIkNzq3rPo1jyETPnR07ULb\u002BHVYL8w="}]]]></EndpointProperties> + <ResponseHeaders><![CDATA[[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"28028"},{"Name":"Content-Type","Value":"application/x-font-ttf"},{"Name":"ETag","Value":"\u0022p\u002BRP8CV3vRK1YbIkNzq3rPo1jyETPnR07ULb\u002BHVYL8w=\u0022"},{"Name":"Last-Modified","Value":"Sat, 14 Oct 2023 15:35:23 GMT"}]]]></ResponseHeaders> + </StaticWebAssetEndpoint> + <StaticWebAssetEndpoint Include="_content/DrinksMachineWebsite/css/open-iconic/font/fonts/open-iconic.wk8x8xm0ah.otf"> + <AssetFile>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\font\fonts\open-iconic.otf'))</AssetFile> + <Selectors><![CDATA[[]]]></Selectors> + <EndpointProperties><![CDATA[[{"Name":"fingerprint","Value":"wk8x8xm0ah"},{"Name":"integrity","Value":"sha256-sDUtuZAEzWZyv/U1xl/9D3ehyU69JE\u002BFvAcu5HQ\u002B/a0="},{"Name":"label","Value":"_content/DrinksMachineWebsite/css/open-iconic/font/fonts/open-iconic.otf"}]]]></EndpointProperties> + <ResponseHeaders><![CDATA[[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"20996"},{"Name":"Content-Type","Value":"font/otf"},{"Name":"ETag","Value":"\u0022sDUtuZAEzWZyv/U1xl/9D3ehyU69JE\u002BFvAcu5HQ\u002B/a0=\u0022"},{"Name":"Last-Modified","Value":"Sat, 14 Oct 2023 15:35:23 GMT"}]]]></ResponseHeaders> + </StaticWebAssetEndpoint> + <StaticWebAssetEndpoint Include="_content/DrinksMachineWebsite/css/open-iconic/font/fonts/open-iconic.woff"> + <AssetFile>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\font\fonts\open-iconic.woff'))</AssetFile> + <Selectors><![CDATA[[]]]></Selectors> + <EndpointProperties><![CDATA[[{"Name":"integrity","Value":"sha256-cZPqVlRJfSNW0KaQ4\u002BUPOXZ/v/QzXlejRDwUNdZIofI="}]]]></EndpointProperties> + <ResponseHeaders><![CDATA[[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"14984"},{"Name":"Content-Type","Value":"application/font-woff"},{"Name":"ETag","Value":"\u0022cZPqVlRJfSNW0KaQ4\u002BUPOXZ/v/QzXlejRDwUNdZIofI=\u0022"},{"Name":"Last-Modified","Value":"Sat, 14 Oct 2023 15:35:23 GMT"}]]]></ResponseHeaders> + </StaticWebAssetEndpoint> + <StaticWebAssetEndpoint Include="_content/DrinksMachineWebsite/css/open-iconic/ICON-LICENSE"> + <AssetFile>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\ICON-LICENSE'))</AssetFile> + <Selectors><![CDATA[[]]]></Selectors> + <EndpointProperties><![CDATA[[{"Name":"integrity","Value":"sha256-aF5g/izareSj02F3MPSoTGNbcMBl9nmZKDe04zjU/ss="}]]]></EndpointProperties> + <ResponseHeaders><![CDATA[[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"1093"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\u0022aF5g/izareSj02F3MPSoTGNbcMBl9nmZKDe04zjU/ss=\u0022"},{"Name":"Last-Modified","Value":"Sat, 14 Oct 2023 15:35:23 GMT"}]]]></ResponseHeaders> + </StaticWebAssetEndpoint> + <StaticWebAssetEndpoint Include="_content/DrinksMachineWebsite/css/open-iconic/ICON-LICENSE.4dwjve0o0b"> + <AssetFile>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\ICON-LICENSE'))</AssetFile> + <Selectors><![CDATA[[]]]></Selectors> + <EndpointProperties><![CDATA[[{"Name":"fingerprint","Value":"4dwjve0o0b"},{"Name":"integrity","Value":"sha256-aF5g/izareSj02F3MPSoTGNbcMBl9nmZKDe04zjU/ss="},{"Name":"label","Value":"_content/DrinksMachineWebsite/css/open-iconic/ICON-LICENSE"}]]]></EndpointProperties> + <ResponseHeaders><![CDATA[[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1093"},{"Name":"Content-Type","Value":"application/octet-stream"},{"Name":"ETag","Value":"\u0022aF5g/izareSj02F3MPSoTGNbcMBl9nmZKDe04zjU/ss=\u0022"},{"Name":"Last-Modified","Value":"Sat, 14 Oct 2023 15:35:23 GMT"}]]]></ResponseHeaders> + </StaticWebAssetEndpoint> + <StaticWebAssetEndpoint Include="_content/DrinksMachineWebsite/css/open-iconic/README.5bzwdl5l6x.md"> + <AssetFile>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\README.md'))</AssetFile> + <Selectors><![CDATA[[]]]></Selectors> + <EndpointProperties><![CDATA[[{"Name":"fingerprint","Value":"5bzwdl5l6x"},{"Name":"integrity","Value":"sha256-waukoLqsiIAw/nXpsKkTHnhImmcPijcBEd2lzqzJNN0="},{"Name":"label","Value":"_content/DrinksMachineWebsite/css/open-iconic/README.md"}]]]></EndpointProperties> + <ResponseHeaders><![CDATA[[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3655"},{"Name":"Content-Type","Value":"text/markdown"},{"Name":"ETag","Value":"\u0022waukoLqsiIAw/nXpsKkTHnhImmcPijcBEd2lzqzJNN0=\u0022"},{"Name":"Last-Modified","Value":"Sat, 14 Oct 2023 15:35:23 GMT"}]]]></ResponseHeaders> + </StaticWebAssetEndpoint> + <StaticWebAssetEndpoint Include="_content/DrinksMachineWebsite/css/open-iconic/README.md"> + <AssetFile>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\README.md'))</AssetFile> + <Selectors><![CDATA[[]]]></Selectors> + <EndpointProperties><![CDATA[[{"Name":"integrity","Value":"sha256-waukoLqsiIAw/nXpsKkTHnhImmcPijcBEd2lzqzJNN0="}]]]></EndpointProperties> + <ResponseHeaders><![CDATA[[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3655"},{"Name":"Content-Type","Value":"text/markdown"},{"Name":"ETag","Value":"\u0022waukoLqsiIAw/nXpsKkTHnhImmcPijcBEd2lzqzJNN0=\u0022"},{"Name":"Last-Modified","Value":"Sat, 14 Oct 2023 15:35:23 GMT"}]]]></ResponseHeaders> + </StaticWebAssetEndpoint> + <StaticWebAssetEndpoint Include="_content/DrinksMachineWebsite/css/site.css"> + <AssetFile>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\site.css'))</AssetFile> + <Selectors><![CDATA[[]]]></Selectors> + <EndpointProperties><![CDATA[[{"Name":"integrity","Value":"sha256-Fx\u002Bc1youNLgejKLBM3S2fD6fcDOSv/D7tNQKm5gws6U="}]]]></EndpointProperties> + <ResponseHeaders><![CDATA[[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"2978"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\u0022Fx\u002Bc1youNLgejKLBM3S2fD6fcDOSv/D7tNQKm5gws6U=\u0022"},{"Name":"Last-Modified","Value":"Sat, 14 Oct 2023 15:35:23 GMT"}]]]></ResponseHeaders> + </StaticWebAssetEndpoint> + <StaticWebAssetEndpoint Include="_content/DrinksMachineWebsite/css/site.zh9s866nx2.css"> + <AssetFile>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\site.css'))</AssetFile> + <Selectors><![CDATA[[]]]></Selectors> + <EndpointProperties><![CDATA[[{"Name":"fingerprint","Value":"zh9s866nx2"},{"Name":"integrity","Value":"sha256-Fx\u002Bc1youNLgejKLBM3S2fD6fcDOSv/D7tNQKm5gws6U="},{"Name":"label","Value":"_content/DrinksMachineWebsite/css/site.css"}]]]></EndpointProperties> + <ResponseHeaders><![CDATA[[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"2978"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\u0022Fx\u002Bc1youNLgejKLBM3S2fD6fcDOSv/D7tNQKm5gws6U=\u0022"},{"Name":"Last-Modified","Value":"Sat, 14 Oct 2023 15:35:23 GMT"}]]]></ResponseHeaders> + </StaticWebAssetEndpoint> + <StaticWebAssetEndpoint Include="_content/DrinksMachineWebsite/DrinksMachineWebsite.0uicmg3r4l.bundle.scp.css"> + <AssetFile>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\DrinksMachineWebsite.0uicmg3r4l.bundle.scp.css'))</AssetFile> + <Selectors><![CDATA[[]]]></Selectors> + <EndpointProperties><![CDATA[[{"Name":"fingerprint","Value":"0uicmg3r4l"},{"Name":"integrity","Value":"sha256-WPAMy\u002B7Tb/NhQ\u002B1MiYZzvmezx0hgWrgxk2sWGiEmdoc="},{"Name":"label","Value":"_content/DrinksMachineWebsite/DrinksMachineWebsite.bundle.scp.css"}]]]></EndpointProperties> + <ResponseHeaders><![CDATA[[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"3031"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\u0022WPAMy\u002B7Tb/NhQ\u002B1MiYZzvmezx0hgWrgxk2sWGiEmdoc=\u0022"},{"Name":"Last-Modified","Value":"Sat, 30 Nov 2024 19:30:04 GMT"}]]]></ResponseHeaders> + </StaticWebAssetEndpoint> + <StaticWebAssetEndpoint Include="_content/DrinksMachineWebsite/DrinksMachineWebsite.bundle.scp.css"> + <AssetFile>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\DrinksMachineWebsite.0uicmg3r4l.bundle.scp.css'))</AssetFile> + <Selectors><![CDATA[[]]]></Selectors> + <EndpointProperties><![CDATA[[{"Name":"integrity","Value":"sha256-WPAMy\u002B7Tb/NhQ\u002B1MiYZzvmezx0hgWrgxk2sWGiEmdoc="}]]]></EndpointProperties> + <ResponseHeaders><![CDATA[[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"no-cache"},{"Name":"Content-Length","Value":"3031"},{"Name":"Content-Type","Value":"text/css"},{"Name":"ETag","Value":"\u0022WPAMy\u002B7Tb/NhQ\u002B1MiYZzvmezx0hgWrgxk2sWGiEmdoc=\u0022"},{"Name":"Last-Modified","Value":"Sat, 30 Nov 2024 19:30:04 GMT"}]]]></ResponseHeaders> + </StaticWebAssetEndpoint> + <StaticWebAssetEndpoint Include="_content/DrinksMachineWebsite/favicon.ifv42okdf2.png"> + <AssetFile>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\favicon.png'))</AssetFile> + <Selectors><![CDATA[[]]]></Selectors> + <EndpointProperties><![CDATA[[{"Name":"fingerprint","Value":"ifv42okdf2"},{"Name":"integrity","Value":"sha256-4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg="},{"Name":"label","Value":"_content/DrinksMachineWebsite/favicon.png"}]]]></EndpointProperties> + <ResponseHeaders><![CDATA[[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=31536000, immutable"},{"Name":"Content-Length","Value":"1148"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\u00224mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=\u0022"},{"Name":"Last-Modified","Value":"Sat, 14 Oct 2023 15:35:23 GMT"}]]]></ResponseHeaders> + </StaticWebAssetEndpoint> + <StaticWebAssetEndpoint Include="_content/DrinksMachineWebsite/favicon.png"> + <AssetFile>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\favicon.png'))</AssetFile> + <Selectors><![CDATA[[]]]></Selectors> + <EndpointProperties><![CDATA[[{"Name":"integrity","Value":"sha256-4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg="}]]]></EndpointProperties> + <ResponseHeaders><![CDATA[[{"Name":"Accept-Ranges","Value":"bytes"},{"Name":"Cache-Control","Value":"max-age=3600, must-revalidate"},{"Name":"Content-Length","Value":"1148"},{"Name":"Content-Type","Value":"image/png"},{"Name":"ETag","Value":"\u00224mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=\u0022"},{"Name":"Last-Modified","Value":"Sat, 14 Oct 2023 15:35:23 GMT"}]]]></ResponseHeaders> + </StaticWebAssetEndpoint> + </ItemGroup> +</Project>
\ No newline at end of file diff --git a/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets/msbuild.DrinksMachineWebsite.Microsoft.AspNetCore.StaticWebAssets.props b/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets/msbuild.DrinksMachineWebsite.Microsoft.AspNetCore.StaticWebAssets.props new file mode 100644 index 0000000..6b65217 --- /dev/null +++ b/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets/msbuild.DrinksMachineWebsite.Microsoft.AspNetCore.StaticWebAssets.props @@ -0,0 +1,256 @@ +<Project> + <ItemGroup> + <StaticWebAsset Include="$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\bootstrap\bootstrap.min.css'))"> + <SourceType>Package</SourceType> + <SourceId>DrinksMachineWebsite</SourceId> + <ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot> + <BasePath>_content/DrinksMachineWebsite</BasePath> + <RelativePath>css/bootstrap/bootstrap.min.css</RelativePath> + <AssetKind>All</AssetKind> + <AssetMode>All</AssetMode> + <AssetRole>Primary</AssetRole> + <RelatedAsset></RelatedAsset> + <AssetTraitName></AssetTraitName> + <AssetTraitValue></AssetTraitValue> + <Fingerprint>bpk8xqwxhs</Fingerprint> + <Integrity>z8OR40MowJ8GgK6P89Y+hiJK5+cclzFHzLhFQLL92bg=</Integrity> + <CopyToOutputDirectory>Never</CopyToOutputDirectory> + <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> + <OriginalItemSpec>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\bootstrap\bootstrap.min.css'))</OriginalItemSpec> + </StaticWebAsset> + <StaticWebAsset Include="$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\bootstrap\bootstrap.min.css.map'))"> + <SourceType>Package</SourceType> + <SourceId>DrinksMachineWebsite</SourceId> + <ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot> + <BasePath>_content/DrinksMachineWebsite</BasePath> + <RelativePath>css/bootstrap/bootstrap.min.css.map</RelativePath> + <AssetKind>All</AssetKind> + <AssetMode>All</AssetMode> + <AssetRole>Primary</AssetRole> + <RelatedAsset></RelatedAsset> + <AssetTraitName></AssetTraitName> + <AssetTraitValue></AssetTraitValue> + <Fingerprint>8inm30yfxf</Fingerprint> + <Integrity>gBwg2tmA0Ci2u54gMF1jNCVku6vznarkLS6D76htNNQ=</Integrity> + <CopyToOutputDirectory>Never</CopyToOutputDirectory> + <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> + <OriginalItemSpec>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\bootstrap\bootstrap.min.css.map'))</OriginalItemSpec> + </StaticWebAsset> + <StaticWebAsset Include="$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\FONT-LICENSE'))"> + <SourceType>Package</SourceType> + <SourceId>DrinksMachineWebsite</SourceId> + <ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot> + <BasePath>_content/DrinksMachineWebsite</BasePath> + <RelativePath>css/open-iconic/FONT-LICENSE</RelativePath> + <AssetKind>All</AssetKind> + <AssetMode>All</AssetMode> + <AssetRole>Primary</AssetRole> + <RelatedAsset></RelatedAsset> + <AssetTraitName></AssetTraitName> + <AssetTraitValue></AssetTraitValue> + <Fingerprint>48tmkg660f</Fingerprint> + <Integrity>jA4J4h/k76zVxbFKEaWwFKJccmO0voOQ1DbUW+5YNlI=</Integrity> + <CopyToOutputDirectory>Never</CopyToOutputDirectory> + <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> + <OriginalItemSpec>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\FONT-LICENSE'))</OriginalItemSpec> + </StaticWebAsset> + <StaticWebAsset Include="$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\font\css\open-iconic-bootstrap.min.css'))"> + <SourceType>Package</SourceType> + <SourceId>DrinksMachineWebsite</SourceId> + <ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot> + <BasePath>_content/DrinksMachineWebsite</BasePath> + <RelativePath>css/open-iconic/font/css/open-iconic-bootstrap.min.css</RelativePath> + <AssetKind>All</AssetKind> + <AssetMode>All</AssetMode> + <AssetRole>Primary</AssetRole> + <RelatedAsset></RelatedAsset> + <AssetTraitName></AssetTraitName> + <AssetTraitValue></AssetTraitValue> + <Fingerprint>cmapd0fi15</Fingerprint> + <Integrity>BJ/G+e+y7bQdrYkS2RBTyNfBHpA9IuGaPmf9htub5MQ=</Integrity> + <CopyToOutputDirectory>Never</CopyToOutputDirectory> + <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> + <OriginalItemSpec>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\font\css\open-iconic-bootstrap.min.css'))</OriginalItemSpec> + </StaticWebAsset> + <StaticWebAsset Include="$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\font\fonts\open-iconic.eot'))"> + <SourceType>Package</SourceType> + <SourceId>DrinksMachineWebsite</SourceId> + <ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot> + <BasePath>_content/DrinksMachineWebsite</BasePath> + <RelativePath>css/open-iconic/font/fonts/open-iconic.eot</RelativePath> + <AssetKind>All</AssetKind> + <AssetMode>All</AssetMode> + <AssetRole>Primary</AssetRole> + <RelatedAsset></RelatedAsset> + <AssetTraitName></AssetTraitName> + <AssetTraitValue></AssetTraitValue> + <Fingerprint>0uw8dim9nl</Fingerprint> + <Integrity>OK3poGPgzKI2NzNgP07XMbJa3Dz6USoUh/chSkSvQpc=</Integrity> + <CopyToOutputDirectory>Never</CopyToOutputDirectory> + <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> + <OriginalItemSpec>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\font\fonts\open-iconic.eot'))</OriginalItemSpec> + </StaticWebAsset> + <StaticWebAsset Include="$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\font\fonts\open-iconic.otf'))"> + <SourceType>Package</SourceType> + <SourceId>DrinksMachineWebsite</SourceId> + <ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot> + <BasePath>_content/DrinksMachineWebsite</BasePath> + <RelativePath>css/open-iconic/font/fonts/open-iconic.otf</RelativePath> + <AssetKind>All</AssetKind> + <AssetMode>All</AssetMode> + <AssetRole>Primary</AssetRole> + <RelatedAsset></RelatedAsset> + <AssetTraitName></AssetTraitName> + <AssetTraitValue></AssetTraitValue> + <Fingerprint>wk8x8xm0ah</Fingerprint> + <Integrity>sDUtuZAEzWZyv/U1xl/9D3ehyU69JE+FvAcu5HQ+/a0=</Integrity> + <CopyToOutputDirectory>Never</CopyToOutputDirectory> + <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> + <OriginalItemSpec>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\font\fonts\open-iconic.otf'))</OriginalItemSpec> + </StaticWebAsset> + <StaticWebAsset Include="$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\font\fonts\open-iconic.svg'))"> + <SourceType>Package</SourceType> + <SourceId>DrinksMachineWebsite</SourceId> + <ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot> + <BasePath>_content/DrinksMachineWebsite</BasePath> + <RelativePath>css/open-iconic/font/fonts/open-iconic.svg</RelativePath> + <AssetKind>All</AssetKind> + <AssetMode>All</AssetMode> + <AssetRole>Primary</AssetRole> + <RelatedAsset></RelatedAsset> + <AssetTraitName></AssetTraitName> + <AssetTraitValue></AssetTraitValue> + <Fingerprint>sjnzgf7e1h</Fingerprint> + <Integrity>+P1oQ5jPzOVJGC52E1oxGXIXxxCyMlqy6A9cNxGYzVk=</Integrity> + <CopyToOutputDirectory>Never</CopyToOutputDirectory> + <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> + <OriginalItemSpec>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\font\fonts\open-iconic.svg'))</OriginalItemSpec> + </StaticWebAsset> + <StaticWebAsset Include="$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\font\fonts\open-iconic.ttf'))"> + <SourceType>Package</SourceType> + <SourceId>DrinksMachineWebsite</SourceId> + <ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot> + <BasePath>_content/DrinksMachineWebsite</BasePath> + <RelativePath>css/open-iconic/font/fonts/open-iconic.ttf</RelativePath> + <AssetKind>All</AssetKind> + <AssetMode>All</AssetMode> + <AssetRole>Primary</AssetRole> + <RelatedAsset></RelatedAsset> + <AssetTraitName></AssetTraitName> + <AssetTraitValue></AssetTraitValue> + <Fingerprint>ll5grcv8wv</Fingerprint> + <Integrity>p+RP8CV3vRK1YbIkNzq3rPo1jyETPnR07ULb+HVYL8w=</Integrity> + <CopyToOutputDirectory>Never</CopyToOutputDirectory> + <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> + <OriginalItemSpec>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\font\fonts\open-iconic.ttf'))</OriginalItemSpec> + </StaticWebAsset> + <StaticWebAsset Include="$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\font\fonts\open-iconic.woff'))"> + <SourceType>Package</SourceType> + <SourceId>DrinksMachineWebsite</SourceId> + <ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot> + <BasePath>_content/DrinksMachineWebsite</BasePath> + <RelativePath>css/open-iconic/font/fonts/open-iconic.woff</RelativePath> + <AssetKind>All</AssetKind> + <AssetMode>All</AssetMode> + <AssetRole>Primary</AssetRole> + <RelatedAsset></RelatedAsset> + <AssetTraitName></AssetTraitName> + <AssetTraitValue></AssetTraitValue> + <Fingerprint>h4d0pazwgy</Fingerprint> + <Integrity>cZPqVlRJfSNW0KaQ4+UPOXZ/v/QzXlejRDwUNdZIofI=</Integrity> + <CopyToOutputDirectory>Never</CopyToOutputDirectory> + <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> + <OriginalItemSpec>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\font\fonts\open-iconic.woff'))</OriginalItemSpec> + </StaticWebAsset> + <StaticWebAsset Include="$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\ICON-LICENSE'))"> + <SourceType>Package</SourceType> + <SourceId>DrinksMachineWebsite</SourceId> + <ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot> + <BasePath>_content/DrinksMachineWebsite</BasePath> + <RelativePath>css/open-iconic/ICON-LICENSE</RelativePath> + <AssetKind>All</AssetKind> + <AssetMode>All</AssetMode> + <AssetRole>Primary</AssetRole> + <RelatedAsset></RelatedAsset> + <AssetTraitName></AssetTraitName> + <AssetTraitValue></AssetTraitValue> + <Fingerprint>4dwjve0o0b</Fingerprint> + <Integrity>aF5g/izareSj02F3MPSoTGNbcMBl9nmZKDe04zjU/ss=</Integrity> + <CopyToOutputDirectory>Never</CopyToOutputDirectory> + <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> + <OriginalItemSpec>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\ICON-LICENSE'))</OriginalItemSpec> + </StaticWebAsset> + <StaticWebAsset Include="$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\README.md'))"> + <SourceType>Package</SourceType> + <SourceId>DrinksMachineWebsite</SourceId> + <ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot> + <BasePath>_content/DrinksMachineWebsite</BasePath> + <RelativePath>css/open-iconic/README.md</RelativePath> + <AssetKind>All</AssetKind> + <AssetMode>All</AssetMode> + <AssetRole>Primary</AssetRole> + <RelatedAsset></RelatedAsset> + <AssetTraitName></AssetTraitName> + <AssetTraitValue></AssetTraitValue> + <Fingerprint>5bzwdl5l6x</Fingerprint> + <Integrity>waukoLqsiIAw/nXpsKkTHnhImmcPijcBEd2lzqzJNN0=</Integrity> + <CopyToOutputDirectory>Never</CopyToOutputDirectory> + <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> + <OriginalItemSpec>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\open-iconic\README.md'))</OriginalItemSpec> + </StaticWebAsset> + <StaticWebAsset Include="$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\site.css'))"> + <SourceType>Package</SourceType> + <SourceId>DrinksMachineWebsite</SourceId> + <ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot> + <BasePath>_content/DrinksMachineWebsite</BasePath> + <RelativePath>css/site.css</RelativePath> + <AssetKind>All</AssetKind> + <AssetMode>All</AssetMode> + <AssetRole>Primary</AssetRole> + <RelatedAsset></RelatedAsset> + <AssetTraitName></AssetTraitName> + <AssetTraitValue></AssetTraitValue> + <Fingerprint>zh9s866nx2</Fingerprint> + <Integrity>Fx+c1youNLgejKLBM3S2fD6fcDOSv/D7tNQKm5gws6U=</Integrity> + <CopyToOutputDirectory>Never</CopyToOutputDirectory> + <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> + <OriginalItemSpec>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\css\site.css'))</OriginalItemSpec> + </StaticWebAsset> + <StaticWebAsset Include="$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\DrinksMachineWebsite.0uicmg3r4l.bundle.scp.css'))"> + <SourceType>Package</SourceType> + <SourceId>DrinksMachineWebsite</SourceId> + <ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot> + <BasePath>_content/DrinksMachineWebsite</BasePath> + <RelativePath>DrinksMachineWebsite.0uicmg3r4l.bundle.scp.css</RelativePath> + <AssetKind>All</AssetKind> + <AssetMode>Reference</AssetMode> + <AssetRole>Primary</AssetRole> + <RelatedAsset></RelatedAsset> + <AssetTraitName>ScopedCss</AssetTraitName> + <AssetTraitValue>ProjectBundle</AssetTraitValue> + <Fingerprint>0uicmg3r4l</Fingerprint> + <Integrity>WPAMy+7Tb/NhQ+1MiYZzvmezx0hgWrgxk2sWGiEmdoc=</Integrity> + <CopyToOutputDirectory>Never</CopyToOutputDirectory> + <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> + <OriginalItemSpec>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\DrinksMachineWebsite.0uicmg3r4l.bundle.scp.css'))</OriginalItemSpec> + </StaticWebAsset> + <StaticWebAsset Include="$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\favicon.png'))"> + <SourceType>Package</SourceType> + <SourceId>DrinksMachineWebsite</SourceId> + <ContentRoot>$(MSBuildThisFileDirectory)..\staticwebassets\</ContentRoot> + <BasePath>_content/DrinksMachineWebsite</BasePath> + <RelativePath>favicon.png</RelativePath> + <AssetKind>All</AssetKind> + <AssetMode>All</AssetMode> + <AssetRole>Primary</AssetRole> + <RelatedAsset></RelatedAsset> + <AssetTraitName></AssetTraitName> + <AssetTraitValue></AssetTraitValue> + <Fingerprint>ifv42okdf2</Fingerprint> + <Integrity>4mWsDy3aHl36ZbGt8zByK7Pvd4kRUoNgTYzRnwmPHwg=</Integrity> + <CopyToOutputDirectory>Never</CopyToOutputDirectory> + <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> + <OriginalItemSpec>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\staticwebassets\favicon.png'))</OriginalItemSpec> + </StaticWebAsset> + </ItemGroup> +</Project>
\ No newline at end of file diff --git a/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets/msbuild.build.DrinksMachineWebsite.props b/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets/msbuild.build.DrinksMachineWebsite.props new file mode 100644 index 0000000..ddaed44 --- /dev/null +++ b/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets/msbuild.build.DrinksMachineWebsite.props @@ -0,0 +1,4 @@ +<Project> + <Import Project="Microsoft.AspNetCore.StaticWebAssetEndpoints.props" /> + <Import Project="Microsoft.AspNetCore.StaticWebAssets.props" /> +</Project>
\ No newline at end of file diff --git a/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.DrinksMachineWebsite.props b/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.DrinksMachineWebsite.props new file mode 100644 index 0000000..d20afbf --- /dev/null +++ b/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.DrinksMachineWebsite.props @@ -0,0 +1,3 @@ +<Project> + <Import Project="..\build\DrinksMachineWebsite.props" /> +</Project>
\ No newline at end of file diff --git a/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.DrinksMachineWebsite.props b/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.DrinksMachineWebsite.props new file mode 100644 index 0000000..3b53be7 --- /dev/null +++ b/DrinksMachineWebsite/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.DrinksMachineWebsite.props @@ -0,0 +1,3 @@ +<Project> + <Import Project="..\buildMultiTargeting\DrinksMachineWebsite.props" /> +</Project>
\ No newline at end of file diff --git a/DrinksMachineWebsite/obj/DrinksMachineWebsite.csproj.nuget.dgspec.json b/DrinksMachineWebsite/obj/DrinksMachineWebsite.csproj.nuget.dgspec.json index e514261..a9f5119 100644 --- a/DrinksMachineWebsite/obj/DrinksMachineWebsite.csproj.nuget.dgspec.json +++ b/DrinksMachineWebsite/obj/DrinksMachineWebsite.csproj.nuget.dgspec.json @@ -38,7 +38,13 @@ "warnAsError": [ "NU1605" ] - } + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "9.0.100" }, "frameworks": { "net7.0": { @@ -62,7 +68,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.402\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.100\\RuntimeIdentifierGraph.json" } } } diff --git a/DrinksMachineWebsite/obj/DrinksMachineWebsite.csproj.nuget.g.props b/DrinksMachineWebsite/obj/DrinksMachineWebsite.csproj.nuget.g.props index c2a85ed..c27c7a5 100644 --- a/DrinksMachineWebsite/obj/DrinksMachineWebsite.csproj.nuget.g.props +++ b/DrinksMachineWebsite/obj/DrinksMachineWebsite.csproj.nuget.g.props @@ -7,7 +7,7 @@ <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot> <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\mgj32\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders> <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> - <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.7.0</NuGetToolVersion> + <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.12.1</NuGetToolVersion> </PropertyGroup> <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> <SourceRoot Include="C:\Users\mgj32\.nuget\packages\" /> diff --git a/DrinksMachineWebsite/obj/project.assets.json b/DrinksMachineWebsite/obj/project.assets.json index e5e749c..940c92c 100644 --- a/DrinksMachineWebsite/obj/project.assets.json +++ b/DrinksMachineWebsite/obj/project.assets.json @@ -45,7 +45,13 @@ "warnAsError": [ "NU1605" ] - } + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "9.0.100" }, "frameworks": { "net7.0": { @@ -69,7 +75,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.402\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.100\\RuntimeIdentifierGraph.json" } } } diff --git a/DrinksMachineWebsite/obj/project.nuget.cache b/DrinksMachineWebsite/obj/project.nuget.cache index 9ec2eed..c35ebc3 100644 --- a/DrinksMachineWebsite/obj/project.nuget.cache +++ b/DrinksMachineWebsite/obj/project.nuget.cache @@ -1,6 +1,6 @@ { "version": 2, - "dgSpecHash": "+7hK4iRHmcwfe6U7a7EnBVAkwVvV2PgSHyiMUry1E9Ket04L8/+SeADFuAWWDfwYgViStFfESxCLyQz+b94W3A==", + "dgSpecHash": "UO8d3tFKDZ4=", "success": true, "projectFilePath": "C:\\Users\\mgj32\\Documents\\GitHub\\DrinksMachine\\DrinksMachineWebsite\\DrinksMachineWebsite.csproj", "expectedPackageFiles": [], |
