blazor project for cs
This commit is contained in:
11
.vscode/launch.json
vendored
Normal file
11
.vscode/launch.json
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Launch and Debug Standalone Blazor WebAssembly App",
|
||||
"type": "blazorwasm",
|
||||
"request": "launch",
|
||||
"cwd": "${workspaceFolder}/CS_Todo"
|
||||
}
|
||||
]
|
||||
}
|
||||
41
.vscode/tasks.json
vendored
Normal file
41
.vscode/tasks.json
vendored
Normal file
@ -0,0 +1,41 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "build",
|
||||
"command": "dotnet",
|
||||
"type": "process",
|
||||
"args": [
|
||||
"build",
|
||||
"${workspaceFolder}/CS_Todo/CS_Todo.csproj",
|
||||
"/property:GenerateFullPaths=true",
|
||||
"/consoleloggerparameters:NoSummary"
|
||||
],
|
||||
"problemMatcher": "$msCompile"
|
||||
},
|
||||
{
|
||||
"label": "publish",
|
||||
"command": "dotnet",
|
||||
"type": "process",
|
||||
"args": [
|
||||
"publish",
|
||||
"${workspaceFolder}/CS_Todo/CS_Todo.csproj",
|
||||
"/property:GenerateFullPaths=true",
|
||||
"/consoleloggerparameters:NoSummary"
|
||||
],
|
||||
"problemMatcher": "$msCompile"
|
||||
},
|
||||
{
|
||||
"label": "watch",
|
||||
"command": "dotnet",
|
||||
"type": "process",
|
||||
"args": [
|
||||
"watch",
|
||||
"run",
|
||||
"--project",
|
||||
"${workspaceFolder}/CS_Todo/CS_Todo.csproj"
|
||||
],
|
||||
"problemMatcher": "$msCompile"
|
||||
}
|
||||
]
|
||||
}
|
||||
12
CS_Todo/App.razor
Normal file
12
CS_Todo/App.razor
Normal file
@ -0,0 +1,12 @@
|
||||
<Router AppAssembly="@typeof(App).Assembly">
|
||||
<Found Context="routeData">
|
||||
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
|
||||
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
|
||||
</Found>
|
||||
<NotFound>
|
||||
<PageTitle>Not found</PageTitle>
|
||||
<LayoutView Layout="@typeof(MainLayout)">
|
||||
<p role="alert">Sorry, there's nothing at this address.</p>
|
||||
</LayoutView>
|
||||
</NotFound>
|
||||
</Router>
|
||||
14
CS_Todo/CS_Todo.csproj
Normal file
14
CS_Todo/CS_Todo.csproj
Normal file
@ -0,0 +1,14 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="6.0.5" />
|
||||
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="6.0.5" PrivateAssets="all" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
18
CS_Todo/Pages/Counter.razor
Normal file
18
CS_Todo/Pages/Counter.razor
Normal file
@ -0,0 +1,18 @@
|
||||
@page "/counter"
|
||||
|
||||
<PageTitle>Counter</PageTitle>
|
||||
|
||||
<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;
|
||||
|
||||
private void IncrementCount()
|
||||
{
|
||||
currentCount++;
|
||||
}
|
||||
}
|
||||
57
CS_Todo/Pages/FetchData.razor
Normal file
57
CS_Todo/Pages/FetchData.razor
Normal file
@ -0,0 +1,57 @@
|
||||
@page "/fetchdata"
|
||||
@inject HttpClient Http
|
||||
|
||||
<PageTitle>Weather forecast</PageTitle>
|
||||
|
||||
<h1>Weather forecast</h1>
|
||||
|
||||
<p>This component demonstrates fetching data from the server.</p>
|
||||
|
||||
@if (forecasts == null)
|
||||
{
|
||||
<p><em>Loading...</em></p>
|
||||
}
|
||||
else
|
||||
{
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Date</th>
|
||||
<th>Temp. (C)</th>
|
||||
<th>Temp. (F)</th>
|
||||
<th>Summary</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach (var forecast in forecasts)
|
||||
{
|
||||
<tr>
|
||||
<td>@forecast.Date.ToShortDateString()</td>
|
||||
<td>@forecast.TemperatureC</td>
|
||||
<td>@forecast.TemperatureF</td>
|
||||
<td>@forecast.Summary</td>
|
||||
</tr>
|
||||
}
|
||||
</tbody>
|
||||
</table>
|
||||
}
|
||||
|
||||
@code {
|
||||
private WeatherForecast[]? forecasts;
|
||||
|
||||
protected override async Task OnInitializedAsync()
|
||||
{
|
||||
forecasts = await Http.GetFromJsonAsync<WeatherForecast[]>("sample-data/weather.json");
|
||||
}
|
||||
|
||||
public class WeatherForecast
|
||||
{
|
||||
public DateTime Date { get; set; }
|
||||
|
||||
public int TemperatureC { get; set; }
|
||||
|
||||
public string? Summary { get; set; }
|
||||
|
||||
public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
|
||||
}
|
||||
}
|
||||
9
CS_Todo/Pages/Index.razor
Normal file
9
CS_Todo/Pages/Index.razor
Normal file
@ -0,0 +1,9 @@
|
||||
@page "/"
|
||||
|
||||
<PageTitle>Index</PageTitle>
|
||||
|
||||
<h1>Hello, world!</h1>
|
||||
|
||||
Welcome to your new app.
|
||||
|
||||
<SurveyPrompt Title="How is Blazor working for you?" />
|
||||
29
CS_Todo/Pages/TodoList.razor
Normal file
29
CS_Todo/Pages/TodoList.razor
Normal file
@ -0,0 +1,29 @@
|
||||
@page "/todo"
|
||||
<h3>Accounts</h3>
|
||||
<input @bind="newTodoItem" type = "Enter Item">
|
||||
<button @onclick="Save"> Save </button>
|
||||
@if (todoList.Count > 0)
|
||||
{
|
||||
<ul style="list-style: none">
|
||||
@foreach (TodoItem todo in todoList)
|
||||
{
|
||||
<li>
|
||||
<input type="checkbox" @bind="todo.IsComplete" />
|
||||
<span style = "@(todo.IsComplete ? "text-decoration: line-through" : "")">@todo.Title</span>
|
||||
</li>
|
||||
}
|
||||
</ul>
|
||||
}
|
||||
|
||||
@code {
|
||||
private List<TodoItem> todoList = new List<TodoItem>();
|
||||
private string newTodoItem { get; set; }
|
||||
private void Save()
|
||||
{
|
||||
if (!string.IsNullOrWhiteSpace(newTodoItem))
|
||||
{
|
||||
todoList.Add(new TodoItem(newTodoItem));
|
||||
newTodoItem = string.Empty;
|
||||
}
|
||||
}
|
||||
}
|
||||
11
CS_Todo/Program.cs
Normal file
11
CS_Todo/Program.cs
Normal file
@ -0,0 +1,11 @@
|
||||
using Microsoft.AspNetCore.Components.Web;
|
||||
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
|
||||
using CS_Todo;
|
||||
|
||||
var builder = WebAssemblyHostBuilder.CreateDefault(args);
|
||||
builder.RootComponents.Add<App>("#app");
|
||||
builder.RootComponents.Add<HeadOutlet>("head::after");
|
||||
|
||||
builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) });
|
||||
|
||||
await builder.Build().RunAsync();
|
||||
30
CS_Todo/Properties/launchSettings.json
Normal file
30
CS_Todo/Properties/launchSettings.json
Normal file
@ -0,0 +1,30 @@
|
||||
{
|
||||
"iisSettings": {
|
||||
"windowsAuthentication": false,
|
||||
"anonymousAuthentication": true,
|
||||
"iisExpress": {
|
||||
"applicationUrl": "http://localhost:20321",
|
||||
"sslPort": 44362
|
||||
}
|
||||
},
|
||||
"profiles": {
|
||||
"CS_Todo": {
|
||||
"commandName": "Project",
|
||||
"dotnetRunMessages": true,
|
||||
"launchBrowser": true,
|
||||
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
|
||||
"applicationUrl": "https://localhost:7038;http://localhost:5055",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
},
|
||||
"IIS Express": {
|
||||
"commandName": "IISExpress",
|
||||
"launchBrowser": true,
|
||||
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
17
CS_Todo/Shared/MainLayout.razor
Normal file
17
CS_Todo/Shared/MainLayout.razor
Normal file
@ -0,0 +1,17 @@
|
||||
@inherits LayoutComponentBase
|
||||
|
||||
<div class="page">
|
||||
<div class="sidebar">
|
||||
<NavMenu />
|
||||
</div>
|
||||
|
||||
<main>
|
||||
<div class="top-row px-4">
|
||||
<a href="https://docs.microsoft.com/aspnet/" target="_blank">About</a>
|
||||
</div>
|
||||
|
||||
<article class="content px-4">
|
||||
@Body
|
||||
</article>
|
||||
</main>
|
||||
</div>
|
||||
81
CS_Todo/Shared/MainLayout.razor.css
Normal file
81
CS_Todo/Shared/MainLayout.razor.css
Normal file
@ -0,0 +1,81 @@
|
||||
.page {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
main {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.sidebar {
|
||||
background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
|
||||
}
|
||||
|
||||
.top-row {
|
||||
background-color: #f7f7f7;
|
||||
border-bottom: 1px solid #d6d5d5;
|
||||
justify-content: flex-end;
|
||||
height: 3.5rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.top-row ::deep a, .top-row ::deep .btn-link {
|
||||
white-space: nowrap;
|
||||
margin-left: 1.5rem;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.top-row ::deep a:hover, .top-row ::deep .btn-link:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.top-row ::deep a:first-child {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
@media (max-width: 640.98px) {
|
||||
.top-row:not(.auth) {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.top-row.auth {
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.top-row ::deep a, .top-row ::deep .btn-link {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 641px) {
|
||||
.page {
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.sidebar {
|
||||
width: 250px;
|
||||
height: 100vh;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.top-row {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.top-row.auth ::deep a:first-child {
|
||||
flex: 1;
|
||||
text-align: right;
|
||||
width: 0;
|
||||
}
|
||||
|
||||
.top-row, article {
|
||||
padding-left: 2rem !important;
|
||||
padding-right: 1.5rem !important;
|
||||
}
|
||||
}
|
||||
44
CS_Todo/Shared/NavMenu.razor
Normal file
44
CS_Todo/Shared/NavMenu.razor
Normal file
@ -0,0 +1,44 @@
|
||||
<div class="top-row ps-3 navbar navbar-dark">
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand" href="">CS_Todo</a>
|
||||
<button title="Navigation menu" class="navbar-toggler" @onclick="ToggleNavMenu">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="@NavMenuCssClass" @onclick="ToggleNavMenu">
|
||||
<nav class="flex-column">
|
||||
<div class="nav-item px-3">
|
||||
<NavLink class="nav-link" href="" Match="NavLinkMatch.All">
|
||||
<span class="oi oi-home" aria-hidden="true"></span> Home
|
||||
</NavLink>
|
||||
</div>
|
||||
<div class="nav-item px-3">
|
||||
<NavLink class="nav-link" href="counter">
|
||||
<span class="oi oi-plus" aria-hidden="true"></span> Counter
|
||||
</NavLink>
|
||||
</div>
|
||||
<div class="nav-item px-3">
|
||||
<NavLink class="nav-link" href="fetchdata">
|
||||
<span class="oi oi-list-rich" aria-hidden="true"></span> Fetch data
|
||||
</NavLink>
|
||||
</div>
|
||||
<div class="nav-item px-3">
|
||||
<NavLink class="nav-link" href="todo">
|
||||
<span class="oi oi-list-rich" aria-hidden="true"></span> To do List
|
||||
</NavLink>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
@code {
|
||||
private bool collapseNavMenu = true;
|
||||
|
||||
private string? NavMenuCssClass => collapseNavMenu ? "collapse" : null;
|
||||
|
||||
private void ToggleNavMenu()
|
||||
{
|
||||
collapseNavMenu = !collapseNavMenu;
|
||||
}
|
||||
}
|
||||
62
CS_Todo/Shared/NavMenu.razor.css
Normal file
62
CS_Todo/Shared/NavMenu.razor.css
Normal file
@ -0,0 +1,62 @@
|
||||
.navbar-toggler {
|
||||
background-color: rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
|
||||
.top-row {
|
||||
height: 3.5rem;
|
||||
background-color: rgba(0,0,0,0.4);
|
||||
}
|
||||
|
||||
.navbar-brand {
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
.oi {
|
||||
width: 2rem;
|
||||
font-size: 1.1rem;
|
||||
vertical-align: text-top;
|
||||
top: -2px;
|
||||
}
|
||||
|
||||
.nav-item {
|
||||
font-size: 0.9rem;
|
||||
padding-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.nav-item:first-of-type {
|
||||
padding-top: 1rem;
|
||||
}
|
||||
|
||||
.nav-item:last-of-type {
|
||||
padding-bottom: 1rem;
|
||||
}
|
||||
|
||||
.nav-item ::deep a {
|
||||
color: #d7d7d7;
|
||||
border-radius: 4px;
|
||||
height: 3rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
line-height: 3rem;
|
||||
}
|
||||
|
||||
.nav-item ::deep a.active {
|
||||
background-color: rgba(255,255,255,0.25);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.nav-item ::deep a:hover {
|
||||
background-color: rgba(255,255,255,0.1);
|
||||
color: white;
|
||||
}
|
||||
|
||||
@media (min-width: 641px) {
|
||||
.navbar-toggler {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.collapse {
|
||||
/* Never collapse the sidebar for wide screens */
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
16
CS_Todo/Shared/SurveyPrompt.razor
Normal file
16
CS_Todo/Shared/SurveyPrompt.razor
Normal file
@ -0,0 +1,16 @@
|
||||
<div class="alert alert-secondary mt-4">
|
||||
<span class="oi oi-pencil me-2" aria-hidden="true"></span>
|
||||
<strong>@Title</strong>
|
||||
|
||||
<span class="text-nowrap">
|
||||
Please take our
|
||||
<a target="_blank" class="font-weight-bold link-dark" href="https://go.microsoft.com/fwlink/?linkid=2148851">brief survey</a>
|
||||
</span>
|
||||
and tell us what you think.
|
||||
</div>
|
||||
|
||||
@code {
|
||||
// Demonstrates how a parent component can supply parameters
|
||||
[Parameter]
|
||||
public string? Title { get; set; }
|
||||
}
|
||||
10
CS_Todo/TodoItem.cs
Normal file
10
CS_Todo/TodoItem.cs
Normal file
@ -0,0 +1,10 @@
|
||||
public class TodoItem
|
||||
{
|
||||
public string Title { get; set; }
|
||||
public bool IsComplete { get; set; } = false;
|
||||
|
||||
public TodoItem(string title)
|
||||
{
|
||||
Title = title;
|
||||
}
|
||||
}
|
||||
10
CS_Todo/_Imports.razor
Normal file
10
CS_Todo/_Imports.razor
Normal file
@ -0,0 +1,10 @@
|
||||
@using System.Net.Http
|
||||
@using System.Net.Http.Json
|
||||
@using Microsoft.AspNetCore.Components.Forms
|
||||
@using Microsoft.AspNetCore.Components.Routing
|
||||
@using Microsoft.AspNetCore.Components.Web
|
||||
@using Microsoft.AspNetCore.Components.Web.Virtualization
|
||||
@using Microsoft.AspNetCore.Components.WebAssembly.Http
|
||||
@using Microsoft.JSInterop
|
||||
@using CS_Todo
|
||||
@using CS_Todo.Shared
|
||||
BIN
CS_Todo/bin/Debug/net6.0/CS_Todo.dll
Normal file
BIN
CS_Todo/bin/Debug/net6.0/CS_Todo.dll
Normal file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/CS_Todo.pdb
Normal file
BIN
CS_Todo/bin/Debug/net6.0/CS_Todo.pdb
Normal file
Binary file not shown.
File diff suppressed because one or more lines are too long
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Authorization.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Authorization.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Forms.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Forms.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Web.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Web.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Components.WebAssembly.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Components.WebAssembly.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Components.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Components.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Metadata.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.AspNetCore.Metadata.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.CSharp.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.CSharp.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Binder.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Binder.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Configuration.FileExtensions.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Configuration.FileExtensions.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Json.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Configuration.Json.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Configuration.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Configuration.dll
Executable file
Binary file not shown.
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.FileProviders.Physical.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.FileProviders.Physical.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Options.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Options.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.JSInterop.WebAssembly.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.JSInterop.WebAssembly.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.JSInterop.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.JSInterop.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.VisualBasic.Core.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.VisualBasic.Core.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.VisualBasic.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.VisualBasic.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.Win32.Primitives.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.Win32.Primitives.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.Win32.Registry.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/Microsoft.Win32.Registry.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.AppContext.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.AppContext.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.Buffers.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.Buffers.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.Collections.Concurrent.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.Collections.Concurrent.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.Collections.Immutable.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.Collections.Immutable.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.Collections.NonGeneric.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.Collections.NonGeneric.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.Collections.Specialized.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.Collections.Specialized.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.Collections.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.Collections.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.ComponentModel.Annotations.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.ComponentModel.Annotations.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.ComponentModel.DataAnnotations.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.ComponentModel.DataAnnotations.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.ComponentModel.EventBasedAsync.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.ComponentModel.EventBasedAsync.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.ComponentModel.Primitives.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.ComponentModel.Primitives.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.ComponentModel.TypeConverter.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.ComponentModel.TypeConverter.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.ComponentModel.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.ComponentModel.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.Configuration.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.Configuration.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.Console.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.Console.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.Core.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.Core.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.Data.Common.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.Data.Common.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.Data.DataSetExtensions.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.Data.DataSetExtensions.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.Data.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.Data.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.Diagnostics.Contracts.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.Diagnostics.Contracts.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.Diagnostics.Debug.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.Diagnostics.Debug.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.Diagnostics.DiagnosticSource.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.Diagnostics.DiagnosticSource.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.Diagnostics.FileVersionInfo.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.Diagnostics.FileVersionInfo.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.Diagnostics.Process.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.Diagnostics.Process.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.Diagnostics.StackTrace.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.Diagnostics.StackTrace.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.Diagnostics.TextWriterTraceListener.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.Diagnostics.TextWriterTraceListener.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.Diagnostics.Tools.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.Diagnostics.Tools.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.Diagnostics.TraceSource.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.Diagnostics.TraceSource.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.Diagnostics.Tracing.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.Diagnostics.Tracing.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.Drawing.Primitives.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.Drawing.Primitives.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.Drawing.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.Drawing.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.Dynamic.Runtime.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.Dynamic.Runtime.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.Formats.Asn1.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.Formats.Asn1.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.Globalization.Calendars.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.Globalization.Calendars.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.Globalization.Extensions.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.Globalization.Extensions.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.Globalization.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.Globalization.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.IO.Compression.Brotli.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.IO.Compression.Brotli.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.IO.Compression.FileSystem.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.IO.Compression.FileSystem.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.IO.Compression.ZipFile.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.IO.Compression.ZipFile.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.IO.Compression.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.IO.Compression.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.IO.FileSystem.AccessControl.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.IO.FileSystem.AccessControl.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.IO.FileSystem.DriveInfo.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.IO.FileSystem.DriveInfo.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.IO.FileSystem.Primitives.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.IO.FileSystem.Primitives.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.IO.FileSystem.Watcher.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.IO.FileSystem.Watcher.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.IO.FileSystem.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.IO.FileSystem.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.IO.IsolatedStorage.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.IO.IsolatedStorage.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.IO.MemoryMappedFiles.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.IO.MemoryMappedFiles.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.IO.Pipelines.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.IO.Pipelines.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.IO.Pipes.AccessControl.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.IO.Pipes.AccessControl.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.IO.Pipes.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.IO.Pipes.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.IO.UnmanagedMemoryStream.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.IO.UnmanagedMemoryStream.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.IO.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.IO.dll
Executable file
Binary file not shown.
BIN
CS_Todo/bin/Debug/net6.0/System.Linq.Expressions.dll
Executable file
BIN
CS_Todo/bin/Debug/net6.0/System.Linq.Expressions.dll
Executable file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user