Compare commits
No commits in common. "db26149bc4fc6aa938386a298dd3fde0d34e6b24" and "8e5b62c2efa5471ad25b83000e77c430d55c9145" have entirely different histories.
db26149bc4
...
8e5b62c2ef
Binary file not shown.
|
@ -1,11 +0,0 @@
|
||||||
{
|
|
||||||
"Version": 1,
|
|
||||||
"ProjectMap": {
|
|
||||||
"464dd643-dad9-4e16-bb24-36f789ed4c15": {
|
|
||||||
"ProjectGuid": "464dd643-dad9-4e16-bb24-36f789ed4c15",
|
|
||||||
"DisplayName": "GottfriedsNackenWebseite",
|
|
||||||
"ColorIndex": 0
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"NextColorIndex": 1
|
|
||||||
}
|
|
Binary file not shown.
Binary file not shown.
|
@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
# Visual Studio Version 17
|
# Visual Studio Version 17
|
||||||
VisualStudioVersion = 17.1.32210.238
|
VisualStudioVersion = 17.1.32210.238
|
||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GottfriedsNackenWebseite", "GottfriedsNackenWebseite\GottfriedsNackenWebseite.csproj", "{464DD643-DAD9-4E16-BB24-36F789ED4C15}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GottfriedsNackenWebseite", "GottfriedsNackenWebseite\GottfriedsNackenWebseite.csproj", "{464DD643-DAD9-4E16-BB24-36F789ED4C15}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
|
|
@ -2,8 +2,6 @@
|
||||||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<ActiveDebugProfile>GottfriedsNackenWebseite</ActiveDebugProfile>
|
<ActiveDebugProfile>GottfriedsNackenWebseite</ActiveDebugProfile>
|
||||||
<RazorPage_SelectedScaffolderID>RazorPageScaffolder</RazorPage_SelectedScaffolderID>
|
|
||||||
<RazorPage_SelectedScaffolderCategoryPath>root/Common/RazorPage</RazorPage_SelectedScaffolderCategoryPath>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||||||
<DebuggerFlavor>ProjectDebugger</DebuggerFlavor>
|
<DebuggerFlavor>ProjectDebugger</DebuggerFlavor>
|
||||||
|
|
|
@ -1,79 +0,0 @@
|
||||||
@page "/wordle"
|
|
||||||
|
|
||||||
<PageTitle>Nacken Wordle</PageTitle>
|
|
||||||
|
|
||||||
<MudText Align="Align.Center" Class="mt-2 mb-2"> Willkommen zum Nacken Wordle</MudText>
|
|
||||||
|
|
||||||
<div hidden="@hideAlert">
|
|
||||||
<MudContainer MaxWidth="MaxWidth.Small">
|
|
||||||
<MudAlert Severity="Severity.Success">Korrekt!</MudAlert>
|
|
||||||
</MudContainer>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="d-flex justify-center mt-2 mb-2">
|
|
||||||
<div>
|
|
||||||
@for(int i = 0; i < 6; i++)
|
|
||||||
{
|
|
||||||
<div class="d-flex mb-2">
|
|
||||||
@for(int j = 0; j < 5; j++)
|
|
||||||
{
|
|
||||||
|
|
||||||
<MudPaper Class="mr-2" Width="60px" Height="60px" Outlined="true">
|
|
||||||
<MudText Typo="Typo.h3" Align="Align.Center"></MudText>
|
|
||||||
</MudPaper>
|
|
||||||
}
|
|
||||||
</div>
|
|
||||||
}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="d-flex justify-center">
|
|
||||||
<MudPaper Class="d-flex gap-4" Width="390px">
|
|
||||||
<MudTextField @ref="textField" T="string" FullWidth="true" @bind-Value="Input" Label="Dein Tipp:" Variant="Variant.Outlined" MaxLength="5" Mask="@mask">Hi</MudTextField>
|
|
||||||
|
|
||||||
<MudButton style="height:56px; margin-top:6px;" Class="justify-center" Size="Size.Large" Variant="Variant.Outlined" EndIcon="@Icons.Material.Filled.Send" Color="Color.Primary" OnClick=@ButtonOnClick>OK</MudButton>
|
|
||||||
</MudPaper>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
@code {
|
|
||||||
public string Input { get; set; }
|
|
||||||
|
|
||||||
public bool hideAlert = true;
|
|
||||||
|
|
||||||
public MudTextField<string> textField;
|
|
||||||
|
|
||||||
//Keine Ahnung wie das funktionert... Danke StackOverflow :)
|
|
||||||
public IMask mask = new RegexMask(@"^[A-Za-z]{0,5}$");
|
|
||||||
|
|
||||||
private string secret = "penis";
|
|
||||||
|
|
||||||
public void ButtonOnClick()
|
|
||||||
{
|
|
||||||
if(Input != null)
|
|
||||||
{
|
|
||||||
if(secret.ToLower() == Input.ToLower())
|
|
||||||
{
|
|
||||||
textField.Clear();
|
|
||||||
hideAlert = false;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
textField.Clear();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
private Color getColor(char letter, int position, string secret)
|
|
||||||
{
|
|
||||||
if (position > secret.Length) return Color.Primary;
|
|
||||||
|
|
||||||
if(letter == secret[position]) return Color.Success;
|
|
||||||
|
|
||||||
if (secret.Contains(letter)) return Color.Warning;
|
|
||||||
|
|
||||||
return Color.Primary;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -14,9 +14,6 @@
|
||||||
<MudNavLink Href="fetchdata" Match=NavLinkMatch.Prefix>
|
<MudNavLink Href="fetchdata" Match=NavLinkMatch.Prefix>
|
||||||
Fetch data
|
Fetch data
|
||||||
</MudNavLink>
|
</MudNavLink>
|
||||||
<MudNavLink Href="wordle" Match=NavLinkMatch.Prefix>
|
|
||||||
Nacken Wordle
|
|
||||||
</MudNavLink>
|
|
||||||
</MudNavMenu>
|
</MudNavMenu>
|
||||||
@*
|
@*
|
||||||
<div class="top-row ps-3 navbar navbar-dark">
|
<div class="top-row ps-3 navbar navbar-dark">
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1 +1 @@
|
||||||
{"ContentRoots":["C:\\Users\\meiko\\Documents\\GitHub\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\wwwroot\\","C:\\Users\\meiko\\.nuget\\packages\\mudblazor\\6.0.7\\staticwebassets\\","C:\\Users\\meiko\\Documents\\GitHub\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\obj\\Debug\\net6.0\\scopedcss\\bundle\\"],"Root":{"Children":{"css":{"Children":{"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"images":{"Children":{"gitea_icon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"images/gitea_icon.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"_content":{"Children":{"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"MudBlazor.min.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"GottfriedsNackenWebseite.styles.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"GottfriedsNackenWebseite.styles.css"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
|
{"ContentRoots":["D:\\Development\\Git\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\wwwroot\\","C:\\Users\\Simon\\.nuget\\packages\\mudblazor\\6.0.7\\staticwebassets\\","D:\\Development\\Git\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\obj\\Debug\\net6.0\\scopedcss\\bundle\\"],"Root":{"Children":{"css":{"Children":{"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"images":{"Children":{"gitea_icon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"images/gitea_icon.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"_content":{"Children":{"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"MudBlazor.min.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"GottfriedsNackenWebseite.styles.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"GottfriedsNackenWebseite.styles.css"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
|
Binary file not shown.
|
@ -8,57 +8,53 @@ build_property.PlatformNeutralAssembly =
|
||||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||||
build_property.RootNamespace = GottfriedsNackenWebseite
|
build_property.RootNamespace = GottfriedsNackenWebseite
|
||||||
build_property.RootNamespace = GottfriedsNackenWebseite
|
build_property.RootNamespace = GottfriedsNackenWebseite
|
||||||
build_property.ProjectDir = C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\
|
build_property.ProjectDir = D:\Development\Git\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\
|
||||||
build_property.RazorLangVersion = 6.0
|
build_property.RazorLangVersion = 6.0
|
||||||
build_property.SupportLocalizedComponentNames =
|
build_property.SupportLocalizedComponentNames =
|
||||||
build_property.GenerateRazorMetadataSourceChecksumAttributes =
|
build_property.GenerateRazorMetadataSourceChecksumAttributes =
|
||||||
build_property.MSBuildProjectDirectory = C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite
|
build_property.MSBuildProjectDirectory = D:\Development\Git\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite
|
||||||
build_property._RazorSourceGeneratorDebug =
|
build_property._RazorSourceGeneratorDebug =
|
||||||
|
|
||||||
[C:/Users/meiko/Documents/GitHub/GottfriedsNackenWebseite/GottfriedsNackenWebseite/GottfriedsNackenWebseite/App.razor]
|
[D:/Development/Git/GottfriedsNackenWebseite/GottfriedsNackenWebseite/GottfriedsNackenWebseite/App.razor]
|
||||||
build_metadata.AdditionalFiles.TargetPath = QXBwLnJhem9y
|
build_metadata.AdditionalFiles.TargetPath = QXBwLnJhem9y
|
||||||
build_metadata.AdditionalFiles.CssScope =
|
build_metadata.AdditionalFiles.CssScope =
|
||||||
|
|
||||||
[C:/Users/meiko/Documents/GitHub/GottfriedsNackenWebseite/GottfriedsNackenWebseite/GottfriedsNackenWebseite/Pages/Counter.razor]
|
[D:/Development/Git/GottfriedsNackenWebseite/GottfriedsNackenWebseite/GottfriedsNackenWebseite/Pages/Counter.razor]
|
||||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQ291bnRlci5yYXpvcg==
|
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQ291bnRlci5yYXpvcg==
|
||||||
build_metadata.AdditionalFiles.CssScope =
|
build_metadata.AdditionalFiles.CssScope =
|
||||||
|
|
||||||
[C:/Users/meiko/Documents/GitHub/GottfriedsNackenWebseite/GottfriedsNackenWebseite/GottfriedsNackenWebseite/Pages/FetchData.razor]
|
[D:/Development/Git/GottfriedsNackenWebseite/GottfriedsNackenWebseite/GottfriedsNackenWebseite/Pages/FetchData.razor]
|
||||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcRmV0Y2hEYXRhLnJhem9y
|
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcRmV0Y2hEYXRhLnJhem9y
|
||||||
build_metadata.AdditionalFiles.CssScope =
|
build_metadata.AdditionalFiles.CssScope =
|
||||||
|
|
||||||
[C:/Users/meiko/Documents/GitHub/GottfriedsNackenWebseite/GottfriedsNackenWebseite/GottfriedsNackenWebseite/Pages/Index.razor]
|
[D:/Development/Git/GottfriedsNackenWebseite/GottfriedsNackenWebseite/GottfriedsNackenWebseite/Pages/Index.razor]
|
||||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcSW5kZXgucmF6b3I=
|
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcSW5kZXgucmF6b3I=
|
||||||
build_metadata.AdditionalFiles.CssScope =
|
build_metadata.AdditionalFiles.CssScope =
|
||||||
|
|
||||||
[C:/Users/meiko/Documents/GitHub/GottfriedsNackenWebseite/GottfriedsNackenWebseite/GottfriedsNackenWebseite/Pages/Wordle.razor]
|
[D:/Development/Git/GottfriedsNackenWebseite/GottfriedsNackenWebseite/GottfriedsNackenWebseite/Shared/SurveyPrompt.razor]
|
||||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcV29yZGxlLnJhem9y
|
|
||||||
build_metadata.AdditionalFiles.CssScope =
|
|
||||||
|
|
||||||
[C:/Users/meiko/Documents/GitHub/GottfriedsNackenWebseite/GottfriedsNackenWebseite/GottfriedsNackenWebseite/Shared/SurveyPrompt.razor]
|
|
||||||
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXFN1cnZleVByb21wdC5yYXpvcg==
|
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXFN1cnZleVByb21wdC5yYXpvcg==
|
||||||
build_metadata.AdditionalFiles.CssScope =
|
build_metadata.AdditionalFiles.CssScope =
|
||||||
|
|
||||||
[C:/Users/meiko/Documents/GitHub/GottfriedsNackenWebseite/GottfriedsNackenWebseite/GottfriedsNackenWebseite/_Imports.razor]
|
[D:/Development/Git/GottfriedsNackenWebseite/GottfriedsNackenWebseite/GottfriedsNackenWebseite/_Imports.razor]
|
||||||
build_metadata.AdditionalFiles.TargetPath = X0ltcG9ydHMucmF6b3I=
|
build_metadata.AdditionalFiles.TargetPath = X0ltcG9ydHMucmF6b3I=
|
||||||
build_metadata.AdditionalFiles.CssScope =
|
build_metadata.AdditionalFiles.CssScope =
|
||||||
|
|
||||||
[C:/Users/meiko/Documents/GitHub/GottfriedsNackenWebseite/GottfriedsNackenWebseite/GottfriedsNackenWebseite/Shared/MainLayout.razor]
|
[D:/Development/Git/GottfriedsNackenWebseite/GottfriedsNackenWebseite/GottfriedsNackenWebseite/Shared/MainLayout.razor]
|
||||||
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXE1haW5MYXlvdXQucmF6b3I=
|
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXE1haW5MYXlvdXQucmF6b3I=
|
||||||
build_metadata.AdditionalFiles.CssScope = b-gqdahrvza0
|
build_metadata.AdditionalFiles.CssScope = b-gqdahrvza0
|
||||||
|
|
||||||
[C:/Users/meiko/Documents/GitHub/GottfriedsNackenWebseite/GottfriedsNackenWebseite/GottfriedsNackenWebseite/Shared/NavMenu.razor]
|
[D:/Development/Git/GottfriedsNackenWebseite/GottfriedsNackenWebseite/GottfriedsNackenWebseite/Shared/NavMenu.razor]
|
||||||
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXE5hdk1lbnUucmF6b3I=
|
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXE5hdk1lbnUucmF6b3I=
|
||||||
build_metadata.AdditionalFiles.CssScope = b-31q1khypux
|
build_metadata.AdditionalFiles.CssScope = b-31q1khypux
|
||||||
|
|
||||||
[C:/Users/meiko/Documents/GitHub/GottfriedsNackenWebseite/GottfriedsNackenWebseite/GottfriedsNackenWebseite/Pages/Error.cshtml]
|
[D:/Development/Git/GottfriedsNackenWebseite/GottfriedsNackenWebseite/GottfriedsNackenWebseite/Pages/Error.cshtml]
|
||||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcRXJyb3IuY3NodG1s
|
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcRXJyb3IuY3NodG1s
|
||||||
build_metadata.AdditionalFiles.CssScope =
|
build_metadata.AdditionalFiles.CssScope =
|
||||||
|
|
||||||
[C:/Users/meiko/Documents/GitHub/GottfriedsNackenWebseite/GottfriedsNackenWebseite/GottfriedsNackenWebseite/Pages/_Host.cshtml]
|
[D:/Development/Git/GottfriedsNackenWebseite/GottfriedsNackenWebseite/GottfriedsNackenWebseite/Pages/_Host.cshtml]
|
||||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcX0hvc3QuY3NodG1s
|
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcX0hvc3QuY3NodG1s
|
||||||
build_metadata.AdditionalFiles.CssScope =
|
build_metadata.AdditionalFiles.CssScope =
|
||||||
|
|
||||||
[C:/Users/meiko/Documents/GitHub/GottfriedsNackenWebseite/GottfriedsNackenWebseite/GottfriedsNackenWebseite/Pages/_Layout.cshtml]
|
[D:/Development/Git/GottfriedsNackenWebseite/GottfriedsNackenWebseite/GottfriedsNackenWebseite/Pages/_Layout.cshtml]
|
||||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcX0xheW91dC5jc2h0bWw=
|
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcX0xheW91dC5jc2h0bWw=
|
||||||
build_metadata.AdditionalFiles.CssScope =
|
build_metadata.AdditionalFiles.CssScope =
|
||||||
|
|
Binary file not shown.
|
@ -1 +1 @@
|
||||||
ac6d46e64eb37167e3590a7c3ee814d82ecdada2
|
5e00081e6f55722c455377fd1889506ad2eb921b
|
||||||
|
|
|
@ -34,39 +34,3 @@ D:\Development\Git\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsN
|
||||||
D:\Development\Git\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\bin\Debug\net6.0\MudBlazor.dll
|
D:\Development\Git\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\bin\Debug\net6.0\MudBlazor.dll
|
||||||
D:\Development\Git\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\bin\Debug\net6.0\System.IO.Pipelines.dll
|
D:\Development\Git\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\bin\Debug\net6.0\System.IO.Pipelines.dll
|
||||||
D:\Development\Git\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\obj\Debug\net6.0\GottfriedsNackenWebseite.csproj.CopyComplete
|
D:\Development\Git\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\obj\Debug\net6.0\GottfriedsNackenWebseite.csproj.CopyComplete
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\bin\Debug\net6.0\appsettings.Development.json
|
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\bin\Debug\net6.0\appsettings.json
|
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\bin\Debug\net6.0\GottfriedsNackenWebseite.staticwebassets.runtime.json
|
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\bin\Debug\net6.0\GottfriedsNackenWebseite.exe
|
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\bin\Debug\net6.0\GottfriedsNackenWebseite.deps.json
|
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\bin\Debug\net6.0\GottfriedsNackenWebseite.runtimeconfig.json
|
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\bin\Debug\net6.0\GottfriedsNackenWebseite.dll
|
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\bin\Debug\net6.0\ref\GottfriedsNackenWebseite.dll
|
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\bin\Debug\net6.0\GottfriedsNackenWebseite.pdb
|
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\bin\Debug\net6.0\Microsoft.AspNetCore.Authorization.dll
|
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\bin\Debug\net6.0\Microsoft.AspNetCore.Components.dll
|
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\bin\Debug\net6.0\Microsoft.AspNetCore.Components.Forms.dll
|
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\bin\Debug\net6.0\Microsoft.AspNetCore.Components.Web.dll
|
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\bin\Debug\net6.0\Microsoft.AspNetCore.Metadata.dll
|
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\bin\Debug\net6.0\Microsoft.JSInterop.dll
|
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\bin\Debug\net6.0\MudBlazor.dll
|
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\bin\Debug\net6.0\System.IO.Pipelines.dll
|
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\obj\Debug\net6.0\GottfriedsNackenWebseite.csproj.AssemblyReference.cache
|
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\obj\Debug\net6.0\GottfriedsNackenWebseite.GeneratedMSBuildEditorConfig.editorconfig
|
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\obj\Debug\net6.0\GottfriedsNackenWebseite.AssemblyInfoInputs.cache
|
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\obj\Debug\net6.0\GottfriedsNackenWebseite.AssemblyInfo.cs
|
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\obj\Debug\net6.0\GottfriedsNackenWebseite.csproj.CoreCompileInputs.cache
|
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\obj\Debug\net6.0\GottfriedsNackenWebseite.MvcApplicationPartsAssemblyInfo.cache
|
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\obj\Debug\net6.0\GottfriedsNackenWebseite.RazorAssemblyInfo.cache
|
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\obj\Debug\net6.0\GottfriedsNackenWebseite.RazorAssemblyInfo.cs
|
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\obj\Debug\net6.0\staticwebassets.build.json
|
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\obj\Debug\net6.0\staticwebassets.development.json
|
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\obj\Debug\net6.0\scopedcss\Shared\MainLayout.razor.rz.scp.css
|
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\obj\Debug\net6.0\scopedcss\Shared\NavMenu.razor.rz.scp.css
|
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\obj\Debug\net6.0\scopedcss\bundle\GottfriedsNackenWebseite.styles.css
|
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\obj\Debug\net6.0\scopedcss\projectbundle\GottfriedsNackenWebseite.bundle.scp.css
|
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\obj\Debug\net6.0\GottfriedsNackenWebseite.csproj.CopyComplete
|
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\obj\Debug\net6.0\GottfriedsNackenWebseite.dll
|
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\obj\Debug\net6.0\ref\GottfriedsNackenWebseite.dll
|
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\obj\Debug\net6.0\GottfriedsNackenWebseite.pdb
|
|
||||||
C:\Users\meiko\Documents\GitHub\GottfriedsNackenWebseite\GottfriedsNackenWebseite\GottfriedsNackenWebseite\obj\Debug\net6.0\GottfriedsNackenWebseite.genruntimeconfig.cache
|
|
||||||
|
|
Binary file not shown.
|
@ -1 +1 @@
|
||||||
2db722389b17eecd5fd22be67d417f8f9594e0fb
|
0895882d0e5188a53aa20c8ed1490d86b90832e5
|
||||||
|
|
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"Version": 1,
|
"Version": 1,
|
||||||
"Hash": "K4AhV4tZffz1AsRa51ulvTBloH9o2Rou86OnDNV+Ea4=",
|
"Hash": "1YRPa6M3x7IGRU5VKhtwunHOBRGQ4hg23mVSW7w7LWo=",
|
||||||
"Source": "GottfriedsNackenWebseite",
|
"Source": "GottfriedsNackenWebseite",
|
||||||
"BasePath": "_content/GottfriedsNackenWebseite",
|
"BasePath": "_content/GottfriedsNackenWebseite",
|
||||||
"Mode": "Default",
|
"Mode": "Default",
|
||||||
|
@ -10,17 +10,17 @@
|
||||||
{
|
{
|
||||||
"Name": "GottfriedsNackenWebseite\\wwwroot",
|
"Name": "GottfriedsNackenWebseite\\wwwroot",
|
||||||
"Source": "GottfriedsNackenWebseite",
|
"Source": "GottfriedsNackenWebseite",
|
||||||
"ContentRoot": "C:\\Users\\meiko\\Documents\\GitHub\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\wwwroot\\",
|
"ContentRoot": "D:\\Development\\Git\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\wwwroot\\",
|
||||||
"BasePath": "_content/GottfriedsNackenWebseite",
|
"BasePath": "_content/GottfriedsNackenWebseite",
|
||||||
"Pattern": "**"
|
"Pattern": "**"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"Assets": [
|
"Assets": [
|
||||||
{
|
{
|
||||||
"Identity": "C:\\Users\\meiko\\.nuget\\packages\\mudblazor\\6.0.7\\staticwebassets\\MudBlazor.min.css",
|
"Identity": "C:\\Users\\Simon\\.nuget\\packages\\mudblazor\\6.0.7\\staticwebassets\\MudBlazor.min.css",
|
||||||
"SourceId": "MudBlazor",
|
"SourceId": "MudBlazor",
|
||||||
"SourceType": "Package",
|
"SourceType": "Package",
|
||||||
"ContentRoot": "C:\\Users\\meiko\\.nuget\\packages\\mudblazor\\6.0.7\\staticwebassets\\",
|
"ContentRoot": "C:\\Users\\Simon\\.nuget\\packages\\mudblazor\\6.0.7\\staticwebassets\\",
|
||||||
"BasePath": "_content/MudBlazor",
|
"BasePath": "_content/MudBlazor",
|
||||||
"RelativePath": "MudBlazor.min.css",
|
"RelativePath": "MudBlazor.min.css",
|
||||||
"AssetKind": "All",
|
"AssetKind": "All",
|
||||||
|
@ -31,13 +31,13 @@
|
||||||
"AssetTraitValue": "",
|
"AssetTraitValue": "",
|
||||||
"CopyToOutputDirectory": "Never",
|
"CopyToOutputDirectory": "Never",
|
||||||
"CopyToPublishDirectory": "PreserveNewest",
|
"CopyToPublishDirectory": "PreserveNewest",
|
||||||
"OriginalItemSpec": "C:\\Users\\meiko\\.nuget\\packages\\mudblazor\\6.0.7\\staticwebassets\\MudBlazor.min.css"
|
"OriginalItemSpec": "C:\\Users\\Simon\\.nuget\\packages\\mudblazor\\6.0.7\\staticwebassets\\MudBlazor.min.css"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Identity": "C:\\Users\\meiko\\.nuget\\packages\\mudblazor\\6.0.7\\staticwebassets\\MudBlazor.min.js",
|
"Identity": "C:\\Users\\Simon\\.nuget\\packages\\mudblazor\\6.0.7\\staticwebassets\\MudBlazor.min.js",
|
||||||
"SourceId": "MudBlazor",
|
"SourceId": "MudBlazor",
|
||||||
"SourceType": "Package",
|
"SourceType": "Package",
|
||||||
"ContentRoot": "C:\\Users\\meiko\\.nuget\\packages\\mudblazor\\6.0.7\\staticwebassets\\",
|
"ContentRoot": "C:\\Users\\Simon\\.nuget\\packages\\mudblazor\\6.0.7\\staticwebassets\\",
|
||||||
"BasePath": "_content/MudBlazor",
|
"BasePath": "_content/MudBlazor",
|
||||||
"RelativePath": "MudBlazor.min.js",
|
"RelativePath": "MudBlazor.min.js",
|
||||||
"AssetKind": "All",
|
"AssetKind": "All",
|
||||||
|
@ -48,13 +48,13 @@
|
||||||
"AssetTraitValue": "",
|
"AssetTraitValue": "",
|
||||||
"CopyToOutputDirectory": "Never",
|
"CopyToOutputDirectory": "Never",
|
||||||
"CopyToPublishDirectory": "PreserveNewest",
|
"CopyToPublishDirectory": "PreserveNewest",
|
||||||
"OriginalItemSpec": "C:\\Users\\meiko\\.nuget\\packages\\mudblazor\\6.0.7\\staticwebassets\\MudBlazor.min.js"
|
"OriginalItemSpec": "C:\\Users\\Simon\\.nuget\\packages\\mudblazor\\6.0.7\\staticwebassets\\MudBlazor.min.js"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Identity": "C:\\Users\\meiko\\Documents\\GitHub\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\obj\\Debug\\net6.0\\scopedcss\\bundle\\GottfriedsNackenWebseite.styles.css",
|
"Identity": "D:\\Development\\Git\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\obj\\Debug\\net6.0\\scopedcss\\bundle\\GottfriedsNackenWebseite.styles.css",
|
||||||
"SourceId": "GottfriedsNackenWebseite",
|
"SourceId": "GottfriedsNackenWebseite",
|
||||||
"SourceType": "Computed",
|
"SourceType": "Computed",
|
||||||
"ContentRoot": "C:\\Users\\meiko\\Documents\\GitHub\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\obj\\Debug\\net6.0\\scopedcss\\bundle\\",
|
"ContentRoot": "D:\\Development\\Git\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\obj\\Debug\\net6.0\\scopedcss\\bundle\\",
|
||||||
"BasePath": "_content/GottfriedsNackenWebseite",
|
"BasePath": "_content/GottfriedsNackenWebseite",
|
||||||
"RelativePath": "GottfriedsNackenWebseite.styles.css",
|
"RelativePath": "GottfriedsNackenWebseite.styles.css",
|
||||||
"AssetKind": "All",
|
"AssetKind": "All",
|
||||||
|
@ -65,13 +65,13 @@
|
||||||
"AssetTraitValue": "ApplicationBundle",
|
"AssetTraitValue": "ApplicationBundle",
|
||||||
"CopyToOutputDirectory": "Never",
|
"CopyToOutputDirectory": "Never",
|
||||||
"CopyToPublishDirectory": "PreserveNewest",
|
"CopyToPublishDirectory": "PreserveNewest",
|
||||||
"OriginalItemSpec": "C:\\Users\\meiko\\Documents\\GitHub\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\obj\\Debug\\net6.0\\scopedcss\\bundle\\GottfriedsNackenWebseite.styles.css"
|
"OriginalItemSpec": "D:\\Development\\Git\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\obj\\Debug\\net6.0\\scopedcss\\bundle\\GottfriedsNackenWebseite.styles.css"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Identity": "C:\\Users\\meiko\\Documents\\GitHub\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\obj\\Debug\\net6.0\\scopedcss\\projectbundle\\GottfriedsNackenWebseite.bundle.scp.css",
|
"Identity": "D:\\Development\\Git\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\obj\\Debug\\net6.0\\scopedcss\\projectbundle\\GottfriedsNackenWebseite.bundle.scp.css",
|
||||||
"SourceId": "GottfriedsNackenWebseite",
|
"SourceId": "GottfriedsNackenWebseite",
|
||||||
"SourceType": "Computed",
|
"SourceType": "Computed",
|
||||||
"ContentRoot": "C:\\Users\\meiko\\Documents\\GitHub\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\obj\\Debug\\net6.0\\scopedcss\\projectbundle\\",
|
"ContentRoot": "D:\\Development\\Git\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\obj\\Debug\\net6.0\\scopedcss\\projectbundle\\",
|
||||||
"BasePath": "_content/GottfriedsNackenWebseite",
|
"BasePath": "_content/GottfriedsNackenWebseite",
|
||||||
"RelativePath": "GottfriedsNackenWebseite.bundle.scp.css",
|
"RelativePath": "GottfriedsNackenWebseite.bundle.scp.css",
|
||||||
"AssetKind": "All",
|
"AssetKind": "All",
|
||||||
|
@ -82,13 +82,13 @@
|
||||||
"AssetTraitValue": "ProjectBundle",
|
"AssetTraitValue": "ProjectBundle",
|
||||||
"CopyToOutputDirectory": "Never",
|
"CopyToOutputDirectory": "Never",
|
||||||
"CopyToPublishDirectory": "PreserveNewest",
|
"CopyToPublishDirectory": "PreserveNewest",
|
||||||
"OriginalItemSpec": "C:\\Users\\meiko\\Documents\\GitHub\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\obj\\Debug\\net6.0\\scopedcss\\projectbundle\\GottfriedsNackenWebseite.bundle.scp.css"
|
"OriginalItemSpec": "D:\\Development\\Git\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\obj\\Debug\\net6.0\\scopedcss\\projectbundle\\GottfriedsNackenWebseite.bundle.scp.css"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Identity": "C:\\Users\\meiko\\Documents\\GitHub\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\wwwroot\\css\\site.css",
|
"Identity": "D:\\Development\\Git\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\wwwroot\\css\\site.css",
|
||||||
"SourceId": "GottfriedsNackenWebseite",
|
"SourceId": "GottfriedsNackenWebseite",
|
||||||
"SourceType": "Discovered",
|
"SourceType": "Discovered",
|
||||||
"ContentRoot": "C:\\Users\\meiko\\Documents\\GitHub\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\wwwroot\\",
|
"ContentRoot": "D:\\Development\\Git\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\wwwroot\\",
|
||||||
"BasePath": "_content/GottfriedsNackenWebseite",
|
"BasePath": "_content/GottfriedsNackenWebseite",
|
||||||
"RelativePath": "css/site.css",
|
"RelativePath": "css/site.css",
|
||||||
"AssetKind": "All",
|
"AssetKind": "All",
|
||||||
|
@ -102,10 +102,10 @@
|
||||||
"OriginalItemSpec": "wwwroot\\css\\site.css"
|
"OriginalItemSpec": "wwwroot\\css\\site.css"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Identity": "C:\\Users\\meiko\\Documents\\GitHub\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\wwwroot\\favicon.ico",
|
"Identity": "D:\\Development\\Git\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\wwwroot\\favicon.ico",
|
||||||
"SourceId": "GottfriedsNackenWebseite",
|
"SourceId": "GottfriedsNackenWebseite",
|
||||||
"SourceType": "Discovered",
|
"SourceType": "Discovered",
|
||||||
"ContentRoot": "C:\\Users\\meiko\\Documents\\GitHub\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\wwwroot\\",
|
"ContentRoot": "D:\\Development\\Git\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\wwwroot\\",
|
||||||
"BasePath": "_content/GottfriedsNackenWebseite",
|
"BasePath": "_content/GottfriedsNackenWebseite",
|
||||||
"RelativePath": "favicon.ico",
|
"RelativePath": "favicon.ico",
|
||||||
"AssetKind": "All",
|
"AssetKind": "All",
|
||||||
|
@ -119,10 +119,10 @@
|
||||||
"OriginalItemSpec": "wwwroot\\favicon.ico"
|
"OriginalItemSpec": "wwwroot\\favicon.ico"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Identity": "C:\\Users\\meiko\\Documents\\GitHub\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\wwwroot\\images\\gitea_icon.svg",
|
"Identity": "D:\\Development\\Git\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\wwwroot\\images\\gitea_icon.svg",
|
||||||
"SourceId": "GottfriedsNackenWebseite",
|
"SourceId": "GottfriedsNackenWebseite",
|
||||||
"SourceType": "Discovered",
|
"SourceType": "Discovered",
|
||||||
"ContentRoot": "C:\\Users\\meiko\\Documents\\GitHub\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\wwwroot\\",
|
"ContentRoot": "D:\\Development\\Git\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\wwwroot\\",
|
||||||
"BasePath": "_content/GottfriedsNackenWebseite",
|
"BasePath": "_content/GottfriedsNackenWebseite",
|
||||||
"RelativePath": "images/gitea_icon.svg",
|
"RelativePath": "images/gitea_icon.svg",
|
||||||
"AssetKind": "All",
|
"AssetKind": "All",
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
{"ContentRoots":["C:\\Users\\meiko\\Documents\\GitHub\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\wwwroot\\","C:\\Users\\meiko\\.nuget\\packages\\mudblazor\\6.0.7\\staticwebassets\\","C:\\Users\\meiko\\Documents\\GitHub\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\obj\\Debug\\net6.0\\scopedcss\\bundle\\"],"Root":{"Children":{"css":{"Children":{"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"images":{"Children":{"gitea_icon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"images/gitea_icon.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"_content":{"Children":{"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"MudBlazor.min.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"GottfriedsNackenWebseite.styles.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"GottfriedsNackenWebseite.styles.css"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
|
{"ContentRoots":["D:\\Development\\Git\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\wwwroot\\","C:\\Users\\Simon\\.nuget\\packages\\mudblazor\\6.0.7\\staticwebassets\\","D:\\Development\\Git\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\obj\\Debug\\net6.0\\scopedcss\\bundle\\"],"Root":{"Children":{"css":{"Children":{"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"images":{"Children":{"gitea_icon.svg":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"images/gitea_icon.svg"},"Patterns":null}},"Asset":null,"Patterns":null},"_content":{"Children":{"MudBlazor":{"Children":{"MudBlazor.min.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"MudBlazor.min.css"},"Patterns":null},"MudBlazor.min.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"MudBlazor.min.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null},"GottfriedsNackenWebseite.styles.css":{"Children":null,"Asset":{"ContentRootIndex":2,"SubPath":"GottfriedsNackenWebseite.styles.css"},"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
|
|
@ -1,24 +1,20 @@
|
||||||
{
|
{
|
||||||
"format": 1,
|
"format": 1,
|
||||||
"restore": {
|
"restore": {
|
||||||
"C:\\Users\\meiko\\Documents\\GitHub\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite.csproj": {}
|
"D:\\Development\\Git\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite.csproj": {}
|
||||||
},
|
},
|
||||||
"projects": {
|
"projects": {
|
||||||
"C:\\Users\\meiko\\Documents\\GitHub\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite.csproj": {
|
"D:\\Development\\Git\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite.csproj": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "C:\\Users\\meiko\\Documents\\GitHub\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite.csproj",
|
"projectUniqueName": "D:\\Development\\Git\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite.csproj",
|
||||||
"projectName": "GottfriedsNackenWebseite",
|
"projectName": "GottfriedsNackenWebseite",
|
||||||
"projectPath": "C:\\Users\\meiko\\Documents\\GitHub\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite.csproj",
|
"projectPath": "D:\\Development\\Git\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite.csproj",
|
||||||
"packagesPath": "C:\\Users\\meiko\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\Simon\\.nuget\\packages\\",
|
||||||
"outputPath": "C:\\Users\\meiko\\Documents\\GitHub\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\obj\\",
|
"outputPath": "D:\\Development\\Git\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
|
||||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
|
||||||
],
|
|
||||||
"configFilePaths": [
|
"configFilePaths": [
|
||||||
"C:\\Users\\meiko\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
"C:\\Users\\Simon\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||||
],
|
],
|
||||||
"originalTargetFrameworks": [
|
"originalTargetFrameworks": [
|
||||||
|
@ -71,7 +67,7 @@
|
||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100\\RuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.200\\RuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,19 +5,18 @@
|
||||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\meiko\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Simon\.nuget\packages\</NuGetPackageFolders>
|
||||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.0.0</NuGetToolVersion>
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.1.0</NuGetToolVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
<SourceRoot Include="C:\Users\meiko\.nuget\packages\" />
|
<SourceRoot Include="C:\Users\Simon\.nuget\packages\" />
|
||||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
<Import Project="$(NuGetPackageRoot)mudblazor\6.0.7\buildTransitive\MudBlazor.props" Condition="Exists('$(NuGetPackageRoot)mudblazor\6.0.7\buildTransitive\MudBlazor.props')" />
|
<Import Project="$(NuGetPackageRoot)mudblazor\6.0.7\buildTransitive\MudBlazor.props" Condition="Exists('$(NuGetPackageRoot)mudblazor\6.0.7\buildTransitive\MudBlazor.props')" />
|
||||||
<Import Project="$(NuGetPackageRoot)microsoft.visualstudio.azure.containers.tools.targets\1.15.0\build\Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props" Condition="Exists('$(NuGetPackageRoot)microsoft.visualstudio.azure.containers.tools.targets\1.15.0\build\Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props')" />
|
<Import Project="$(NuGetPackageRoot)microsoft.visualstudio.azure.containers.tools.targets\1.15.0\build\Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props" Condition="Exists('$(NuGetPackageRoot)microsoft.visualstudio.azure.containers.tools.targets\1.15.0\build\Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props')" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
<PkgMicrosoft_VisualStudio_Azure_Containers_Tools_Targets Condition=" '$(PkgMicrosoft_VisualStudio_Azure_Containers_Tools_Targets)' == '' ">C:\Users\meiko\.nuget\packages\microsoft.visualstudio.azure.containers.tools.targets\1.15.0</PkgMicrosoft_VisualStudio_Azure_Containers_Tools_Targets>
|
<PkgMicrosoft_VisualStudio_Azure_Containers_Tools_Targets Condition=" '$(PkgMicrosoft_VisualStudio_Azure_Containers_Tools_Targets)' == '' ">C:\Users\Simon\.nuget\packages\microsoft.visualstudio.azure.containers.tools.targets\1.15.0</PkgMicrosoft_VisualStudio_Azure_Containers_Tools_Targets>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Project>
|
</Project>
|
|
@ -623,24 +623,19 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"packageFolders": {
|
"packageFolders": {
|
||||||
"C:\\Users\\meiko\\.nuget\\packages\\": {},
|
"C:\\Users\\Simon\\.nuget\\packages\\": {}
|
||||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
|
|
||||||
},
|
},
|
||||||
"project": {
|
"project": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "C:\\Users\\meiko\\Documents\\GitHub\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite.csproj",
|
"projectUniqueName": "D:\\Development\\Git\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite.csproj",
|
||||||
"projectName": "GottfriedsNackenWebseite",
|
"projectName": "GottfriedsNackenWebseite",
|
||||||
"projectPath": "C:\\Users\\meiko\\Documents\\GitHub\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite.csproj",
|
"projectPath": "D:\\Development\\Git\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite.csproj",
|
||||||
"packagesPath": "C:\\Users\\meiko\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\Simon\\.nuget\\packages\\",
|
||||||
"outputPath": "C:\\Users\\meiko\\Documents\\GitHub\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\obj\\",
|
"outputPath": "D:\\Development\\Git\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
|
||||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
|
||||||
],
|
|
||||||
"configFilePaths": [
|
"configFilePaths": [
|
||||||
"C:\\Users\\meiko\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
"C:\\Users\\Simon\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||||
],
|
],
|
||||||
"originalTargetFrameworks": [
|
"originalTargetFrameworks": [
|
||||||
|
@ -693,7 +688,7 @@
|
||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100\\RuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.200\\RuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,25 +1,25 @@
|
||||||
{
|
{
|
||||||
"version": 2,
|
"version": 2,
|
||||||
"dgSpecHash": "ZV+lDR5CdK5NAqNn9N2CfpKPpXmucBloPTmvfHK1qIPVxyF7/+ocjnB1fo+bJNm4alNNStwgyk3ZMuGYLirrOg==",
|
"dgSpecHash": "t7gQU8uBeudIiCI61qJSQavkT4OslvqT6jtiPFcYuf8RhU5HXR8XENp075SGDbLlnSfNooVoyTO4p7hNR4Bdng==",
|
||||||
"success": true,
|
"success": true,
|
||||||
"projectFilePath": "C:\\Users\\meiko\\Documents\\GitHub\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite.csproj",
|
"projectFilePath": "D:\\Development\\Git\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite\\GottfriedsNackenWebseite.csproj",
|
||||||
"expectedPackageFiles": [
|
"expectedPackageFiles": [
|
||||||
"C:\\Users\\meiko\\.nuget\\packages\\microsoft.aspnetcore.authorization\\6.0.2\\microsoft.aspnetcore.authorization.6.0.2.nupkg.sha512",
|
"C:\\Users\\Simon\\.nuget\\packages\\microsoft.aspnetcore.authorization\\6.0.2\\microsoft.aspnetcore.authorization.6.0.2.nupkg.sha512",
|
||||||
"C:\\Users\\meiko\\.nuget\\packages\\microsoft.aspnetcore.components\\6.0.2\\microsoft.aspnetcore.components.6.0.2.nupkg.sha512",
|
"C:\\Users\\Simon\\.nuget\\packages\\microsoft.aspnetcore.components\\6.0.2\\microsoft.aspnetcore.components.6.0.2.nupkg.sha512",
|
||||||
"C:\\Users\\meiko\\.nuget\\packages\\microsoft.aspnetcore.components.analyzers\\6.0.2\\microsoft.aspnetcore.components.analyzers.6.0.2.nupkg.sha512",
|
"C:\\Users\\Simon\\.nuget\\packages\\microsoft.aspnetcore.components.analyzers\\6.0.2\\microsoft.aspnetcore.components.analyzers.6.0.2.nupkg.sha512",
|
||||||
"C:\\Users\\meiko\\.nuget\\packages\\microsoft.aspnetcore.components.forms\\6.0.2\\microsoft.aspnetcore.components.forms.6.0.2.nupkg.sha512",
|
"C:\\Users\\Simon\\.nuget\\packages\\microsoft.aspnetcore.components.forms\\6.0.2\\microsoft.aspnetcore.components.forms.6.0.2.nupkg.sha512",
|
||||||
"C:\\Users\\meiko\\.nuget\\packages\\microsoft.aspnetcore.components.web\\6.0.2\\microsoft.aspnetcore.components.web.6.0.2.nupkg.sha512",
|
"C:\\Users\\Simon\\.nuget\\packages\\microsoft.aspnetcore.components.web\\6.0.2\\microsoft.aspnetcore.components.web.6.0.2.nupkg.sha512",
|
||||||
"C:\\Users\\meiko\\.nuget\\packages\\microsoft.aspnetcore.metadata\\6.0.2\\microsoft.aspnetcore.metadata.6.0.2.nupkg.sha512",
|
"C:\\Users\\Simon\\.nuget\\packages\\microsoft.aspnetcore.metadata\\6.0.2\\microsoft.aspnetcore.metadata.6.0.2.nupkg.sha512",
|
||||||
"C:\\Users\\meiko\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\6.0.0\\microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512",
|
"C:\\Users\\Simon\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\6.0.0\\microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\meiko\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0\\microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512",
|
"C:\\Users\\Simon\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0\\microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\meiko\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\6.0.0\\microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512",
|
"C:\\Users\\Simon\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\6.0.0\\microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\meiko\\.nuget\\packages\\microsoft.extensions.options\\6.0.0\\microsoft.extensions.options.6.0.0.nupkg.sha512",
|
"C:\\Users\\Simon\\.nuget\\packages\\microsoft.extensions.options\\6.0.0\\microsoft.extensions.options.6.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\meiko\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0\\microsoft.extensions.primitives.6.0.0.nupkg.sha512",
|
"C:\\Users\\Simon\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0\\microsoft.extensions.primitives.6.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\meiko\\.nuget\\packages\\microsoft.jsinterop\\6.0.2\\microsoft.jsinterop.6.0.2.nupkg.sha512",
|
"C:\\Users\\Simon\\.nuget\\packages\\microsoft.jsinterop\\6.0.2\\microsoft.jsinterop.6.0.2.nupkg.sha512",
|
||||||
"C:\\Users\\meiko\\.nuget\\packages\\microsoft.visualstudio.azure.containers.tools.targets\\1.15.0\\microsoft.visualstudio.azure.containers.tools.targets.1.15.0.nupkg.sha512",
|
"C:\\Users\\Simon\\.nuget\\packages\\microsoft.visualstudio.azure.containers.tools.targets\\1.15.0\\microsoft.visualstudio.azure.containers.tools.targets.1.15.0.nupkg.sha512",
|
||||||
"C:\\Users\\meiko\\.nuget\\packages\\mudblazor\\6.0.7\\mudblazor.6.0.7.nupkg.sha512",
|
"C:\\Users\\Simon\\.nuget\\packages\\mudblazor\\6.0.7\\mudblazor.6.0.7.nupkg.sha512",
|
||||||
"C:\\Users\\meiko\\.nuget\\packages\\system.io.pipelines\\6.0.2\\system.io.pipelines.6.0.2.nupkg.sha512",
|
"C:\\Users\\Simon\\.nuget\\packages\\system.io.pipelines\\6.0.2\\system.io.pipelines.6.0.2.nupkg.sha512",
|
||||||
"C:\\Users\\meiko\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
|
"C:\\Users\\Simon\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
|
||||||
],
|
],
|
||||||
"logs": []
|
"logs": []
|
||||||
}
|
}
|
|
@ -25,186 +25,3 @@
|
||||||
2.0
|
2.0
|
||||||
2.0
|
2.0
|
||||||
2.0
|
2.0
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
2.0
|
|
||||||
|
|
Loading…
Reference in New Issue