mirror of
https://github.com/yummy4friends/y4f.git
synced 2024-12-29 04:47:08 +01:00
New Blazor Project created
This commit is contained in:
parent
0de04330bf
commit
b1fdecbc7e
Binary file not shown.
Binary file not shown.
0
.vs/y4f/FileContentIndex/read.lock
Normal file
0
.vs/y4f/FileContentIndex/read.lock
Normal file
1026
.vs/y4f/config/applicationhost.config
Normal file
1026
.vs/y4f/config/applicationhost.config
Normal file
File diff suppressed because it is too large
Load Diff
BIN
.vs/y4f/v17/.suo
Normal file
BIN
.vs/y4f/v17/.suo
Normal file
Binary file not shown.
12
App.razor
Normal file
12
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>
|
18
Pages/Counter.razor
Normal file
18
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
Pages/FetchData.razor
Normal file
57
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 DateOnly Date { get; set; }
|
||||
|
||||
public int TemperatureC { get; set; }
|
||||
|
||||
public string? Summary { get; set; }
|
||||
|
||||
public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
|
||||
}
|
||||
}
|
9
Pages/Index.razor
Normal file
9
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?" />
|
11
Program.cs
Normal file
11
Program.cs
Normal file
@ -0,0 +1,11 @@
|
||||
using Microsoft.AspNetCore.Components.Web;
|
||||
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
|
||||
using y4f;
|
||||
|
||||
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();
|
40
Properties/launchSettings.json
Normal file
40
Properties/launchSettings.json
Normal file
@ -0,0 +1,40 @@
|
||||
{
|
||||
"iisSettings": {
|
||||
"windowsAuthentication": false,
|
||||
"anonymousAuthentication": true,
|
||||
"iisExpress": {
|
||||
"applicationUrl": "http://localhost:18780",
|
||||
"sslPort": 44358
|
||||
}
|
||||
},
|
||||
"profiles": {
|
||||
"http": {
|
||||
"commandName": "Project",
|
||||
"dotnetRunMessages": true,
|
||||
"launchBrowser": true,
|
||||
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
|
||||
"applicationUrl": "http://localhost:5248",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
},
|
||||
"https": {
|
||||
"commandName": "Project",
|
||||
"dotnetRunMessages": true,
|
||||
"launchBrowser": true,
|
||||
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
|
||||
"applicationUrl": "https://localhost:7138;http://localhost:5248",
|
||||
"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
Shared/MainLayout.razor
Normal file
17
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
Shared/MainLayout.razor.css
Normal file
81
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;
|
||||
}
|
||||
}
|
39
Shared/NavMenu.razor
Normal file
39
Shared/NavMenu.razor
Normal file
@ -0,0 +1,39 @@
|
||||
<div class="top-row ps-3 navbar navbar-dark">
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand" href="">y4f</a>
|
||||
<button title="Navigation menu" class="navbar-toggler" @onclick="ToggleNavMenu">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="@NavMenuCssClass nav-scrollable" @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>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
@code {
|
||||
private bool collapseNavMenu = true;
|
||||
|
||||
private string? NavMenuCssClass => collapseNavMenu ? "collapse" : null;
|
||||
|
||||
private void ToggleNavMenu()
|
||||
{
|
||||
collapseNavMenu = !collapseNavMenu;
|
||||
}
|
||||
}
|
68
Shared/NavMenu.razor.css
Normal file
68
Shared/NavMenu.razor.css
Normal file
@ -0,0 +1,68 @@
|
||||
.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;
|
||||
}
|
||||
|
||||
.nav-scrollable {
|
||||
/* Allow sidebar to scroll for tall menus */
|
||||
height: calc(100vh - 3.5rem);
|
||||
overflow-y: auto;
|
||||
}
|
||||
}
|
16
Shared/SurveyPrompt.razor
Normal file
16
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=2186157">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
_Imports.razor
Normal file
10
_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 y4f
|
||||
@using y4f.Shared
|
BIN
bin/Debug/net7.0/Microsoft.AspNetCore.Authorization.dll
Normal file
BIN
bin/Debug/net7.0/Microsoft.AspNetCore.Authorization.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/Microsoft.AspNetCore.Components.Forms.dll
Normal file
BIN
bin/Debug/net7.0/Microsoft.AspNetCore.Components.Forms.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/Microsoft.AspNetCore.Components.Web.dll
Normal file
BIN
bin/Debug/net7.0/Microsoft.AspNetCore.Components.Web.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/Microsoft.AspNetCore.Components.WebAssembly.dll
Normal file
BIN
bin/Debug/net7.0/Microsoft.AspNetCore.Components.WebAssembly.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/Microsoft.AspNetCore.Components.dll
Normal file
BIN
bin/Debug/net7.0/Microsoft.AspNetCore.Components.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/Microsoft.AspNetCore.Metadata.dll
Normal file
BIN
bin/Debug/net7.0/Microsoft.AspNetCore.Metadata.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/Microsoft.CSharp.dll
Normal file
BIN
bin/Debug/net7.0/Microsoft.CSharp.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
bin/Debug/net7.0/Microsoft.Extensions.Configuration.Binder.dll
Normal file
BIN
bin/Debug/net7.0/Microsoft.Extensions.Configuration.Binder.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
bin/Debug/net7.0/Microsoft.Extensions.Configuration.Json.dll
Normal file
BIN
bin/Debug/net7.0/Microsoft.Extensions.Configuration.Json.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/Microsoft.Extensions.Configuration.dll
Normal file
BIN
bin/Debug/net7.0/Microsoft.Extensions.Configuration.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
bin/Debug/net7.0/Microsoft.Extensions.DependencyInjection.dll
Normal file
BIN
bin/Debug/net7.0/Microsoft.Extensions.DependencyInjection.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
bin/Debug/net7.0/Microsoft.Extensions.FileProviders.Physical.dll
Normal file
BIN
bin/Debug/net7.0/Microsoft.Extensions.FileProviders.Physical.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll
Normal file
BIN
bin/Debug/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/Microsoft.Extensions.Logging.Abstractions.dll
Normal file
BIN
bin/Debug/net7.0/Microsoft.Extensions.Logging.Abstractions.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/Microsoft.Extensions.Logging.dll
Normal file
BIN
bin/Debug/net7.0/Microsoft.Extensions.Logging.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/Microsoft.Extensions.Options.dll
Normal file
BIN
bin/Debug/net7.0/Microsoft.Extensions.Options.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/Microsoft.Extensions.Primitives.dll
Normal file
BIN
bin/Debug/net7.0/Microsoft.Extensions.Primitives.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/Microsoft.JSInterop.WebAssembly.dll
Normal file
BIN
bin/Debug/net7.0/Microsoft.JSInterop.WebAssembly.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/Microsoft.JSInterop.dll
Normal file
BIN
bin/Debug/net7.0/Microsoft.JSInterop.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/Microsoft.VisualBasic.Core.dll
Normal file
BIN
bin/Debug/net7.0/Microsoft.VisualBasic.Core.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/Microsoft.VisualBasic.dll
Normal file
BIN
bin/Debug/net7.0/Microsoft.VisualBasic.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/Microsoft.Win32.Primitives.dll
Normal file
BIN
bin/Debug/net7.0/Microsoft.Win32.Primitives.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/Microsoft.Win32.Registry.dll
Normal file
BIN
bin/Debug/net7.0/Microsoft.Win32.Registry.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.AppContext.dll
Normal file
BIN
bin/Debug/net7.0/System.AppContext.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.Buffers.dll
Normal file
BIN
bin/Debug/net7.0/System.Buffers.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.Collections.Concurrent.dll
Normal file
BIN
bin/Debug/net7.0/System.Collections.Concurrent.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.Collections.Immutable.dll
Normal file
BIN
bin/Debug/net7.0/System.Collections.Immutable.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.Collections.NonGeneric.dll
Normal file
BIN
bin/Debug/net7.0/System.Collections.NonGeneric.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.Collections.Specialized.dll
Normal file
BIN
bin/Debug/net7.0/System.Collections.Specialized.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.Collections.dll
Normal file
BIN
bin/Debug/net7.0/System.Collections.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.ComponentModel.Annotations.dll
Normal file
BIN
bin/Debug/net7.0/System.ComponentModel.Annotations.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.ComponentModel.DataAnnotations.dll
Normal file
BIN
bin/Debug/net7.0/System.ComponentModel.DataAnnotations.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.ComponentModel.EventBasedAsync.dll
Normal file
BIN
bin/Debug/net7.0/System.ComponentModel.EventBasedAsync.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.ComponentModel.Primitives.dll
Normal file
BIN
bin/Debug/net7.0/System.ComponentModel.Primitives.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.ComponentModel.TypeConverter.dll
Normal file
BIN
bin/Debug/net7.0/System.ComponentModel.TypeConverter.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.ComponentModel.dll
Normal file
BIN
bin/Debug/net7.0/System.ComponentModel.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.Configuration.dll
Normal file
BIN
bin/Debug/net7.0/System.Configuration.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.Console.dll
Normal file
BIN
bin/Debug/net7.0/System.Console.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.Core.dll
Normal file
BIN
bin/Debug/net7.0/System.Core.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.Data.Common.dll
Normal file
BIN
bin/Debug/net7.0/System.Data.Common.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.Data.DataSetExtensions.dll
Normal file
BIN
bin/Debug/net7.0/System.Data.DataSetExtensions.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.Data.dll
Normal file
BIN
bin/Debug/net7.0/System.Data.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.Diagnostics.Contracts.dll
Normal file
BIN
bin/Debug/net7.0/System.Diagnostics.Contracts.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.Diagnostics.Debug.dll
Normal file
BIN
bin/Debug/net7.0/System.Diagnostics.Debug.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.Diagnostics.DiagnosticSource.dll
Normal file
BIN
bin/Debug/net7.0/System.Diagnostics.DiagnosticSource.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.Diagnostics.FileVersionInfo.dll
Normal file
BIN
bin/Debug/net7.0/System.Diagnostics.FileVersionInfo.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.Diagnostics.Process.dll
Normal file
BIN
bin/Debug/net7.0/System.Diagnostics.Process.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.Diagnostics.StackTrace.dll
Normal file
BIN
bin/Debug/net7.0/System.Diagnostics.StackTrace.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.Diagnostics.TextWriterTraceListener.dll
Normal file
BIN
bin/Debug/net7.0/System.Diagnostics.TextWriterTraceListener.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.Diagnostics.Tools.dll
Normal file
BIN
bin/Debug/net7.0/System.Diagnostics.Tools.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.Diagnostics.TraceSource.dll
Normal file
BIN
bin/Debug/net7.0/System.Diagnostics.TraceSource.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.Diagnostics.Tracing.dll
Normal file
BIN
bin/Debug/net7.0/System.Diagnostics.Tracing.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.Drawing.Primitives.dll
Normal file
BIN
bin/Debug/net7.0/System.Drawing.Primitives.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.Drawing.dll
Normal file
BIN
bin/Debug/net7.0/System.Drawing.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.Dynamic.Runtime.dll
Normal file
BIN
bin/Debug/net7.0/System.Dynamic.Runtime.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.Formats.Asn1.dll
Normal file
BIN
bin/Debug/net7.0/System.Formats.Asn1.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.Formats.Tar.dll
Normal file
BIN
bin/Debug/net7.0/System.Formats.Tar.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.Globalization.Calendars.dll
Normal file
BIN
bin/Debug/net7.0/System.Globalization.Calendars.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.Globalization.Extensions.dll
Normal file
BIN
bin/Debug/net7.0/System.Globalization.Extensions.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.Globalization.dll
Normal file
BIN
bin/Debug/net7.0/System.Globalization.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.IO.Compression.Brotli.dll
Normal file
BIN
bin/Debug/net7.0/System.IO.Compression.Brotli.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.IO.Compression.FileSystem.dll
Normal file
BIN
bin/Debug/net7.0/System.IO.Compression.FileSystem.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.IO.Compression.ZipFile.dll
Normal file
BIN
bin/Debug/net7.0/System.IO.Compression.ZipFile.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.IO.Compression.dll
Normal file
BIN
bin/Debug/net7.0/System.IO.Compression.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.IO.FileSystem.AccessControl.dll
Normal file
BIN
bin/Debug/net7.0/System.IO.FileSystem.AccessControl.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.IO.FileSystem.DriveInfo.dll
Normal file
BIN
bin/Debug/net7.0/System.IO.FileSystem.DriveInfo.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.IO.FileSystem.Primitives.dll
Normal file
BIN
bin/Debug/net7.0/System.IO.FileSystem.Primitives.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.IO.FileSystem.Watcher.dll
Normal file
BIN
bin/Debug/net7.0/System.IO.FileSystem.Watcher.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.IO.FileSystem.dll
Normal file
BIN
bin/Debug/net7.0/System.IO.FileSystem.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.IO.IsolatedStorage.dll
Normal file
BIN
bin/Debug/net7.0/System.IO.IsolatedStorage.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.IO.MemoryMappedFiles.dll
Normal file
BIN
bin/Debug/net7.0/System.IO.MemoryMappedFiles.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.IO.Pipelines.dll
Normal file
BIN
bin/Debug/net7.0/System.IO.Pipelines.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.IO.Pipes.AccessControl.dll
Normal file
BIN
bin/Debug/net7.0/System.IO.Pipes.AccessControl.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.IO.Pipes.dll
Normal file
BIN
bin/Debug/net7.0/System.IO.Pipes.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.IO.UnmanagedMemoryStream.dll
Normal file
BIN
bin/Debug/net7.0/System.IO.UnmanagedMemoryStream.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.IO.dll
Normal file
BIN
bin/Debug/net7.0/System.IO.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.Linq.Expressions.dll
Normal file
BIN
bin/Debug/net7.0/System.Linq.Expressions.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.Linq.Parallel.dll
Normal file
BIN
bin/Debug/net7.0/System.Linq.Parallel.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net7.0/System.Linq.Queryable.dll
Normal file
BIN
bin/Debug/net7.0/System.Linq.Queryable.dll
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user