init commit
This commit is contained in:
BIN
.vs/Server Dashboard/DesignTimeBuild/.dtbcache.v2
Normal file
BIN
.vs/Server Dashboard/DesignTimeBuild/.dtbcache.v2
Normal file
Binary file not shown.
BIN
.vs/Server Dashboard/v16/.suo
Normal file
BIN
.vs/Server Dashboard/v16/.suo
Normal file
Binary file not shown.
25
Server Dashboard.sln
Normal file
25
Server Dashboard.sln
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
|
||||||
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
|
# Visual Studio Version 16
|
||||||
|
VisualStudioVersion = 16.0.31129.286
|
||||||
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Server Dashboard", "Server Dashboard\Server Dashboard.csproj", "{1183B3CA-7F78-4749-B571-0BCF52EA4FCD}"
|
||||||
|
EndProject
|
||||||
|
Global
|
||||||
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
Release|Any CPU = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
|
{1183B3CA-7F78-4749-B571-0BCF52EA4FCD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{1183B3CA-7F78-4749-B571-0BCF52EA4FCD}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{1183B3CA-7F78-4749-B571-0BCF52EA4FCD}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{1183B3CA-7F78-4749-B571-0BCF52EA4FCD}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
|
HideSolutionNode = FALSE
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||||
|
SolutionGuid = {A326C8A2-0AB9-4248-B7F3-720181D8A10E}
|
||||||
|
EndGlobalSection
|
||||||
|
EndGlobal
|
||||||
131
Server Dashboard/App.xaml
Normal file
131
Server Dashboard/App.xaml
Normal file
@@ -0,0 +1,131 @@
|
|||||||
|
<Application x:Class="Server_Dashboard.App"
|
||||||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
|
xmlns:local="clr-namespace:Server_Dashboard"
|
||||||
|
StartupUri="MainWindow.xaml">
|
||||||
|
<Application.Resources>
|
||||||
|
|
||||||
|
<RadialGradientBrush x:Key="LoginBackground" GradientOrigin="0.5, 0.5" Center="0.5, 0.5">
|
||||||
|
<RadialGradientBrush.GradientStops>
|
||||||
|
<GradientStop Color="#2A2D30" Offset="1"/>
|
||||||
|
<GradientStop Color="#444C4E" Offset="0"/>
|
||||||
|
</RadialGradientBrush.GradientStops>
|
||||||
|
</RadialGradientBrush>
|
||||||
|
|
||||||
|
<SolidColorBrush x:Key="Background" Color="#141424"/>
|
||||||
|
<!--A700 Teal-->
|
||||||
|
<SolidColorBrush x:Key="Green" Color="#00BFA5"/>
|
||||||
|
<!--600 Light Blue-->
|
||||||
|
<SolidColorBrush x:Key="Blue" Color="#039BE5"/>
|
||||||
|
<!--800 Light Blue-->
|
||||||
|
<SolidColorBrush x:Key="PressedBlue" Color="#0277BD"/>
|
||||||
|
<!--500 Yellow-->
|
||||||
|
<SolidColorBrush x:Key="Yellow" Color="#FFEB3B"/>
|
||||||
|
<!--700 Yellow-->
|
||||||
|
<SolidColorBrush x:Key="PressedYellow" Color="#FBC02D"/>
|
||||||
|
|
||||||
|
<Style x:Key="loginButtonStyle" TargetType="Button">
|
||||||
|
<Setter Property="Background" Value="#25AEA6"/>
|
||||||
|
<Setter Property="Template">
|
||||||
|
<Setter.Value>
|
||||||
|
<ControlTemplate TargetType="{x:Type Button}">
|
||||||
|
<Border CornerRadius="4" Background="{TemplateBinding Background}">
|
||||||
|
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
||||||
|
</Border>
|
||||||
|
</ControlTemplate>
|
||||||
|
</Setter.Value>
|
||||||
|
</Setter>
|
||||||
|
<Style.Triggers>
|
||||||
|
|
||||||
|
</Style.Triggers>
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style x:Key="LoginViewBorder" TargetType="{x:Type Border}">
|
||||||
|
<Setter Property="BorderBrush" Value="#25AEA6"/>
|
||||||
|
<Setter Property="CornerRadius" Value="4"/>
|
||||||
|
<Setter Property="BorderThickness" Value="2"/>
|
||||||
|
<Setter Property="Background" Value="{StaticResource LoginBackground}"/>
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style x:Key="LoginFormsBorder" TargetType="{x:Type Border}">
|
||||||
|
<Setter Property="BorderBrush" Value="#1B1C20"/>
|
||||||
|
<Setter Property="CornerRadius" Value="4"/>
|
||||||
|
<Setter Property="BorderThickness" Value="1"/>
|
||||||
|
<Setter Property="Width" Value="350"/>
|
||||||
|
<Setter Property="Height" Value="60"/>
|
||||||
|
<Setter Property="Background" Value="#1B1C20"/>
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style x:Name="LoginFormHint" x:Key="LoginFormTooltip" TargetType="{x:Type Label}">
|
||||||
|
<Setter Property="Foreground" Value="#40AAAAAA"/>
|
||||||
|
<Setter Property="FontFamily" Value="Arial"/>
|
||||||
|
<Setter Property="FontSize" Value="20"/>
|
||||||
|
<Setter Property="VerticalAlignment" Value="Center"/>
|
||||||
|
<Setter Property="HorizontalAlignment" Value="Left"/>
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style x:Key="LoginFormsInputBorder" TargetType="{x:Type Border}">
|
||||||
|
<Setter Property="BorderBrush" Value="#1B1C20"/>
|
||||||
|
<Setter Property="BorderThickness" Value="1"/>
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style x:Key="LoginFormInput" TargetType="{x:Type TextBox}">
|
||||||
|
<Setter Property="CaretBrush" Value="#BBBBBB"/>
|
||||||
|
<Setter Property="VerticalContentAlignment" Value="Center"/>
|
||||||
|
<Setter Property="FontFamily" Value="Arial"/>
|
||||||
|
<Setter Property="FontSize" Value="20"/>
|
||||||
|
<Setter Property="Foreground" Value="#878787"/>
|
||||||
|
<Setter Property="VerticalAlignment" Value="Center"/>
|
||||||
|
<Setter Property="HorizontalAlignment" Value="Center"/>
|
||||||
|
<Setter Property="Width" Value="290"/>
|
||||||
|
<Setter Property="Height" Value="60"/>
|
||||||
|
<Setter Property="BorderBrush" Value="Transparent"/>
|
||||||
|
<Setter Property="Background" Value="Transparent"/>
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style x:Key="LoginFormPassword" TargetType="{x:Type PasswordBox}">
|
||||||
|
<Setter Property="PasswordChar" Value="*"/>
|
||||||
|
<Setter Property="CaretBrush" Value="#BBBBBB"/>
|
||||||
|
<Setter Property="VerticalContentAlignment" Value="Center"/>
|
||||||
|
<Setter Property="FontFamily" Value="Arial"/>
|
||||||
|
<Setter Property="FontSize" Value="20"/>
|
||||||
|
<Setter Property="Foreground" Value="#878787"/>
|
||||||
|
<Setter Property="VerticalAlignment" Value="Center"/>
|
||||||
|
<Setter Property="HorizontalAlignment" Value="Center"/>
|
||||||
|
<Setter Property="Width" Value="290"/>
|
||||||
|
<Setter Property="Height" Value="60"/>
|
||||||
|
<Setter Property="BorderBrush" Value="Transparent"/>
|
||||||
|
<Setter Property="Background" Value="Transparent"/>
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style x:Key="LoginFormButton" TargetType="{x:Type Button}">
|
||||||
|
<Setter Property="Width" Value="350"/>
|
||||||
|
<Setter Property="Height" Value="60"/>
|
||||||
|
<Setter Property="Background" Value="#25AEA6"/>
|
||||||
|
<Setter Property="BorderBrush" Value="Transparent"/>
|
||||||
|
<Setter Property="BorderThickness" Value="0"/>
|
||||||
|
<Setter Property="Foreground" Value="{StaticResource Background}"/>
|
||||||
|
<Setter Property="FontSize" Value="25"/>
|
||||||
|
<Setter Property="FontFamily" Value="Arial"/>
|
||||||
|
<Setter Property="Cursor" Value="Hand"/>
|
||||||
|
<Setter Property="Template">
|
||||||
|
<Setter.Value>
|
||||||
|
<ControlTemplate TargetType="{x:Type Button}">
|
||||||
|
<Border CornerRadius="4" Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}">
|
||||||
|
<TextBlock TextAlignment="Center" Padding="5" TextWrapping="Wrap" Text="{TemplateBinding Content}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
|
||||||
|
</Border>
|
||||||
|
<ControlTemplate.Triggers>
|
||||||
|
<Trigger Property="IsMouseOver" Value="True">
|
||||||
|
<Setter Property="Background" Value="#35bEb6"/>
|
||||||
|
</Trigger>
|
||||||
|
<Trigger Property="IsPressed" Value="True">
|
||||||
|
<Setter Property="Background" Value="#159E96"/>
|
||||||
|
</Trigger>
|
||||||
|
</ControlTemplate.Triggers>
|
||||||
|
</ControlTemplate>
|
||||||
|
</Setter.Value>
|
||||||
|
</Setter>
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
</Application.Resources>
|
||||||
|
</Application>
|
||||||
15
Server Dashboard/App.xaml.cs
Normal file
15
Server Dashboard/App.xaml.cs
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Configuration;
|
||||||
|
using System.Data;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using System.Windows;
|
||||||
|
|
||||||
|
namespace Server_Dashboard {
|
||||||
|
/// <summary>
|
||||||
|
/// Interaction logic for App.xaml
|
||||||
|
/// </summary>
|
||||||
|
public partial class App : Application {
|
||||||
|
}
|
||||||
|
}
|
||||||
10
Server Dashboard/AssemblyInfo.cs
Normal file
10
Server Dashboard/AssemblyInfo.cs
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
using System.Windows;
|
||||||
|
|
||||||
|
[assembly: ThemeInfo(
|
||||||
|
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
|
||||||
|
//(used if a resource is not found in the page,
|
||||||
|
// or application resource dictionaries)
|
||||||
|
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
|
||||||
|
//(used if a resource is not found in the page,
|
||||||
|
// app, or any theme specific resource dictionaries)
|
||||||
|
)]
|
||||||
BIN
Server Dashboard/Assets/Images/userlogin.png
Normal file
BIN
Server Dashboard/Assets/Images/userlogin.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.7 KiB |
BIN
Server Dashboard/Assets/Images/userpasswd.png
Normal file
BIN
Server Dashboard/Assets/Images/userpasswd.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 10 KiB |
15
Server Dashboard/DashboardModules/DashboardModule.cs
Normal file
15
Server Dashboard/DashboardModules/DashboardModule.cs
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
|
namespace Server_Dashboard {
|
||||||
|
class DashboardModule {
|
||||||
|
public string Name { get; set; }
|
||||||
|
public string Creator { get; set; }
|
||||||
|
public DateTime Uptime { get; set; }
|
||||||
|
public ModuleItem ModuleItem { get; set; }
|
||||||
|
public DashboardModule() {
|
||||||
|
ModuleItem = new ModuleItem();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
12
Server Dashboard/DashboardModules/ModuleItem.cs
Normal file
12
Server Dashboard/DashboardModules/ModuleItem.cs
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
|
namespace Server_Dashboard {
|
||||||
|
class ModuleItem {
|
||||||
|
public string Name { get; set; }
|
||||||
|
public double CpuTemp { get; set; }
|
||||||
|
public double GpuTemp { get; set; }
|
||||||
|
public DateTime Uptime { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
28
Server Dashboard/Database/DatabaseHandler.cs
Normal file
28
Server Dashboard/Database/DatabaseHandler.cs
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
using Microsoft.Win32;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Configuration;
|
||||||
|
using System.Data.SqlClient;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
namespace Server_Dashboard {
|
||||||
|
class DatabaseHandler {
|
||||||
|
#region Private methods
|
||||||
|
/// <summary>
|
||||||
|
/// Opens a database connection
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="callback">Callback type SqlConnection</param>
|
||||||
|
/// <returns></returns>
|
||||||
|
private SqlConnection ConnectToDatabase(Action<SqlConnection> callback) {
|
||||||
|
using (SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["Co2AuswertungDB"].ConnectionString)) {
|
||||||
|
try {
|
||||||
|
con.Open();
|
||||||
|
callback(con);
|
||||||
|
con.Close();
|
||||||
|
} catch { return null; }
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
#endregion
|
||||||
|
}
|
||||||
|
}
|
||||||
75
Server Dashboard/MainWindow.xaml
Normal file
75
Server Dashboard/MainWindow.xaml
Normal file
@@ -0,0 +1,75 @@
|
|||||||
|
<Window x:Class="Server_Dashboard.MainWindow"
|
||||||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
|
xmlns:local="clr-namespace:Server_Dashboard"
|
||||||
|
mc:Ignorable="d"
|
||||||
|
Title="Server Dashboard" Height="600" Width="400">
|
||||||
|
<Border Style="{StaticResource LoginViewBorder}">
|
||||||
|
<Grid>
|
||||||
|
<Grid.RowDefinitions>
|
||||||
|
<RowDefinition Height="*"/>
|
||||||
|
<RowDefinition Height="80"/>
|
||||||
|
<RowDefinition Height="80"/>
|
||||||
|
<RowDefinition Height="80"/>
|
||||||
|
<RowDefinition Height=".5*"/>
|
||||||
|
</Grid.RowDefinitions>
|
||||||
|
<TextBlock Text="Login"/>
|
||||||
|
<Grid Grid.Row="1">
|
||||||
|
<Border Style="{StaticResource LoginFormsBorder}">
|
||||||
|
<Grid Grid.Column="1">
|
||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition Width="60"/>
|
||||||
|
<ColumnDefinition/>
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
<Image Grid.Column="0" Height="30" Source="Assets/Images/userlogin.png"/>
|
||||||
|
<Border Grid.Column="1" Style="{StaticResource LoginFormsInputBorder}">
|
||||||
|
<TextBox Grid.Column="1" Style="{StaticResource LoginFormInput}"/>
|
||||||
|
</Border>
|
||||||
|
</Grid>
|
||||||
|
</Border>
|
||||||
|
</Grid>
|
||||||
|
<Grid Grid.Row="2">
|
||||||
|
<Border Style="{StaticResource LoginFormsBorder}">
|
||||||
|
<Grid Grid.Column="1">
|
||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition Width="60"/>
|
||||||
|
<ColumnDefinition/>
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
<Image Grid.Column="0" Height="30" Source="Assets/Images/userpasswd.png"/>
|
||||||
|
<Border Grid.Column="1" Style="{StaticResource LoginFormsInputBorder}">
|
||||||
|
<PasswordBox Grid.Column="1" Style="{StaticResource LoginFormPassword}"/>
|
||||||
|
</Border>
|
||||||
|
</Grid>
|
||||||
|
</Border>
|
||||||
|
</Grid>
|
||||||
|
<Grid Grid.Row="3">
|
||||||
|
<Button Style="{StaticResource LoginFormButton}" Content="Anmelden"/>
|
||||||
|
</Grid>
|
||||||
|
<Grid Grid.Row="4">
|
||||||
|
<Grid.RowDefinitions>
|
||||||
|
<RowDefinition/>
|
||||||
|
<RowDefinition/>
|
||||||
|
</Grid.RowDefinitions>
|
||||||
|
<Grid Height="20" VerticalAlignment="Top" Grid.Row="0">
|
||||||
|
<TextBlock Grid.Column="1" HorizontalAlignment="Center" FontSize="14" FontFamily="Arial" Foreground="#878787">
|
||||||
|
Noch keinen Account? Klicke
|
||||||
|
<Hyperlink Foreground="#25AEA6" TextDecorations="none" NavigateUri="https://www.youtube.com/watch?v=dQw4w9WgXcQ">
|
||||||
|
hier
|
||||||
|
</Hyperlink>
|
||||||
|
um einen zu erstellen!
|
||||||
|
</TextBlock>
|
||||||
|
</Grid>
|
||||||
|
<Grid VerticalAlignment="Top" Height="20" Grid.Row="2">
|
||||||
|
<TextBlock HorizontalAlignment="Center" FontSize="14" FontFamily="Arial" Foreground="#878787">
|
||||||
|
Passwort
|
||||||
|
<Hyperlink Foreground="#25AEA6" TextDecorations="none" NavigateUri="https://www.youtube.com/watch?v=dQw4w9WgXcQ">
|
||||||
|
Vergessen?
|
||||||
|
</Hyperlink>
|
||||||
|
</TextBlock>
|
||||||
|
</Grid>
|
||||||
|
</Grid>
|
||||||
|
</Grid>
|
||||||
|
</Border>
|
||||||
|
</Window>
|
||||||
25
Server Dashboard/MainWindow.xaml.cs
Normal file
25
Server Dashboard/MainWindow.xaml.cs
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using System.Windows;
|
||||||
|
using System.Windows.Controls;
|
||||||
|
using System.Windows.Data;
|
||||||
|
using System.Windows.Documents;
|
||||||
|
using System.Windows.Input;
|
||||||
|
using System.Windows.Media;
|
||||||
|
using System.Windows.Media.Imaging;
|
||||||
|
using System.Windows.Navigation;
|
||||||
|
using System.Windows.Shapes;
|
||||||
|
|
||||||
|
namespace Server_Dashboard {
|
||||||
|
/// <summary>
|
||||||
|
/// Interaction logic for MainWindow.xaml
|
||||||
|
/// </summary>
|
||||||
|
public partial class MainWindow : Window {
|
||||||
|
public MainWindow() {
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
28
Server Dashboard/Server Dashboard.csproj
Normal file
28
Server Dashboard/Server Dashboard.csproj
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>WinExe</OutputType>
|
||||||
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||||
|
<RootNamespace>Server_Dashboard</RootNamespace>
|
||||||
|
<UseWPF>true</UseWPF>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<None Remove="Assets\Images\userlogin.png" />
|
||||||
|
<None Remove="Assets\Images\userpasswd.png" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<Folder Include="Views\" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="System.Data.SqlClient" Version="4.8.2" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<Resource Include="Assets\Images\userlogin.png" />
|
||||||
|
<Resource Include="Assets\Images\userpasswd.png" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
14
Server Dashboard/Server Dashboard.csproj.user
Normal file
14
Server Dashboard/Server Dashboard.csproj.user
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup />
|
||||||
|
<ItemGroup>
|
||||||
|
<ApplicationDefinition Update="App.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</ApplicationDefinition>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Page Update="MainWindow.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</Page>
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
||||||
14
Server Dashboard/ViewModels/BaseViewModel/BaseViewModel.cs
Normal file
14
Server Dashboard/ViewModels/BaseViewModel/BaseViewModel.cs
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.ComponentModel;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
|
namespace Server_Dashboard {
|
||||||
|
class BaseViewModel : INotifyPropertyChanged {
|
||||||
|
public event PropertyChangedEventHandler PropertyChanged = (sender, e) => { };
|
||||||
|
|
||||||
|
protected void OnPropertyChanged(string prop) {
|
||||||
|
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(prop));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
28
Server Dashboard/ViewModels/DashboardModuleViewModel.cs
Normal file
28
Server Dashboard/ViewModels/DashboardModuleViewModel.cs
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Collections.ObjectModel;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
|
namespace Server_Dashboard {
|
||||||
|
class DashboardModuleViewModel : BaseViewModel {
|
||||||
|
public ObservableCollection<DashboardModule> Modules = new ObservableCollection<DashboardModule>();
|
||||||
|
public DashboardModuleViewModel() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#region Dashboard CRUD
|
||||||
|
private void CreateDashboard() {
|
||||||
|
|
||||||
|
}
|
||||||
|
private void UpdateDashboard() {
|
||||||
|
|
||||||
|
}
|
||||||
|
private void GetDashboardInformation() {
|
||||||
|
|
||||||
|
}
|
||||||
|
private void DeleteDashboard() {
|
||||||
|
|
||||||
|
}
|
||||||
|
#endregion
|
||||||
|
}
|
||||||
|
}
|
||||||
8
Server Dashboard/ViewModels/MainViewModel.cs
Normal file
8
Server Dashboard/ViewModels/MainViewModel.cs
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
|
namespace Server_Dashboard {
|
||||||
|
class MainViewModel : BaseViewModel {
|
||||||
|
}
|
||||||
|
}
|
||||||
27
Server Dashboard/ViewModels/RelayCommand/RelayCommand.cs
Normal file
27
Server Dashboard/ViewModels/RelayCommand/RelayCommand.cs
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Text;
|
||||||
|
using System.Windows.Input;
|
||||||
|
|
||||||
|
namespace Server_Dashboard {
|
||||||
|
class RelayCommand : ICommand {
|
||||||
|
|
||||||
|
//New Action
|
||||||
|
private Action<object> execAction;
|
||||||
|
|
||||||
|
//Never gets fires, but needs to be implemented
|
||||||
|
public event EventHandler CanExecuteChanged = (sender, e) => { };
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Sets the given action to the private one
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="action">The function to be executed</param>
|
||||||
|
public RelayCommand(Action<object> action) => execAction = action;
|
||||||
|
|
||||||
|
//Makes all functions always executable
|
||||||
|
public bool CanExecute(object parameter) { return true; }
|
||||||
|
|
||||||
|
//Executes the function
|
||||||
|
public void Execute(object parameter) { execAction(parameter); }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,164 @@
|
|||||||
|
{
|
||||||
|
"runtimeTarget": {
|
||||||
|
"name": ".NETCoreApp,Version=v3.1",
|
||||||
|
"signature": ""
|
||||||
|
},
|
||||||
|
"compilationOptions": {},
|
||||||
|
"targets": {
|
||||||
|
".NETCoreApp,Version=v3.1": {
|
||||||
|
"Server Dashboard/1.0.0": {
|
||||||
|
"dependencies": {
|
||||||
|
"System.Data.SqlClient": "4.8.2"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"Server Dashboard.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.NETCore.Platforms/3.1.0": {},
|
||||||
|
"Microsoft.Win32.Registry/4.7.0": {
|
||||||
|
"dependencies": {
|
||||||
|
"System.Security.AccessControl": "4.7.0",
|
||||||
|
"System.Security.Principal.Windows": "4.7.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtime.native.System.Data.SqlClient.sni/4.7.0": {
|
||||||
|
"dependencies": {
|
||||||
|
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
|
||||||
|
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
|
||||||
|
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||||
|
"runtimeTargets": {
|
||||||
|
"runtimes/win-arm64/native/sni.dll": {
|
||||||
|
"rid": "win-arm64",
|
||||||
|
"assetType": "native",
|
||||||
|
"fileVersion": "4.6.25512.1"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||||
|
"runtimeTargets": {
|
||||||
|
"runtimes/win-x64/native/sni.dll": {
|
||||||
|
"rid": "win-x64",
|
||||||
|
"assetType": "native",
|
||||||
|
"fileVersion": "4.6.25512.1"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||||
|
"runtimeTargets": {
|
||||||
|
"runtimes/win-x86/native/sni.dll": {
|
||||||
|
"rid": "win-x86",
|
||||||
|
"assetType": "native",
|
||||||
|
"fileVersion": "4.6.25512.1"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Data.SqlClient/4.8.2": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Win32.Registry": "4.7.0",
|
||||||
|
"System.Security.Principal.Windows": "4.7.0",
|
||||||
|
"runtime.native.System.Data.SqlClient.sni": "4.7.0"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netcoreapp2.1/System.Data.SqlClient.dll": {
|
||||||
|
"assemblyVersion": "4.6.1.2",
|
||||||
|
"fileVersion": "4.700.20.37001"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeTargets": {
|
||||||
|
"runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
|
||||||
|
"rid": "unix",
|
||||||
|
"assetType": "runtime",
|
||||||
|
"assemblyVersion": "4.6.1.2",
|
||||||
|
"fileVersion": "4.700.20.37001"
|
||||||
|
},
|
||||||
|
"runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
|
||||||
|
"rid": "win",
|
||||||
|
"assetType": "runtime",
|
||||||
|
"assemblyVersion": "4.6.1.2",
|
||||||
|
"fileVersion": "4.700.20.37001"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Security.AccessControl/4.7.0": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.NETCore.Platforms": "3.1.0",
|
||||||
|
"System.Security.Principal.Windows": "4.7.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Security.Principal.Windows/4.7.0": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"libraries": {
|
||||||
|
"Server Dashboard/1.0.0": {
|
||||||
|
"type": "project",
|
||||||
|
"serviceable": false,
|
||||||
|
"sha512": ""
|
||||||
|
},
|
||||||
|
"Microsoft.NETCore.Platforms/3.1.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
|
||||||
|
"path": "microsoft.netcore.platforms/3.1.0",
|
||||||
|
"hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Win32.Registry/4.7.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
|
||||||
|
"path": "microsoft.win32.registry/4.7.0",
|
||||||
|
"hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"runtime.native.System.Data.SqlClient.sni/4.7.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==",
|
||||||
|
"path": "runtime.native.system.data.sqlclient.sni/4.7.0",
|
||||||
|
"hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
|
||||||
|
"path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
|
||||||
|
"hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
|
||||||
|
"path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
|
||||||
|
"hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
|
||||||
|
"path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
|
||||||
|
"hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"System.Data.SqlClient/4.8.2": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-80vGtW6uLB4AkyrdVuKTXYUyuXDPAsSKbTVfvjndZaRAYxzFzWhJbvUfeAKrN+128ycWZjLIAl61dFUwWHOOTw==",
|
||||||
|
"path": "system.data.sqlclient/4.8.2",
|
||||||
|
"hashPath": "system.data.sqlclient.4.8.2.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"System.Security.AccessControl/4.7.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
|
||||||
|
"path": "system.security.accesscontrol/4.7.0",
|
||||||
|
"hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"System.Security.Principal.Windows/4.7.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
|
||||||
|
"path": "system.security.principal.windows/4.7.0",
|
||||||
|
"hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
Server Dashboard/bin/Debug/netcoreapp3.1/Server Dashboard.dll
Normal file
BIN
Server Dashboard/bin/Debug/netcoreapp3.1/Server Dashboard.dll
Normal file
Binary file not shown.
BIN
Server Dashboard/bin/Debug/netcoreapp3.1/Server Dashboard.exe
Normal file
BIN
Server Dashboard/bin/Debug/netcoreapp3.1/Server Dashboard.exe
Normal file
Binary file not shown.
BIN
Server Dashboard/bin/Debug/netcoreapp3.1/Server Dashboard.pdb
Normal file
BIN
Server Dashboard/bin/Debug/netcoreapp3.1/Server Dashboard.pdb
Normal file
Binary file not shown.
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"runtimeOptions": {
|
||||||
|
"additionalProbingPaths": [
|
||||||
|
"C:\\Users\\Crylia\\.dotnet\\store\\|arch|\\|tfm|",
|
||||||
|
"C:\\Users\\Crylia\\.nuget\\packages",
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"runtimeOptions": {
|
||||||
|
"tfm": "netcoreapp3.1",
|
||||||
|
"framework": {
|
||||||
|
"name": "Microsoft.WindowsDesktop.App",
|
||||||
|
"version": "3.1.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")]
|
||||||
BIN
Server Dashboard/obj/Debug/netcoreapp3.1/App.baml
Normal file
BIN
Server Dashboard/obj/Debug/netcoreapp3.1/App.baml
Normal file
Binary file not shown.
84
Server Dashboard/obj/Debug/netcoreapp3.1/App.g.cs
Normal file
84
Server Dashboard/obj/Debug/netcoreapp3.1/App.g.cs
Normal file
@@ -0,0 +1,84 @@
|
|||||||
|
#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "CFAEA69073E0A9617DE983A1C17F812E8D11C797"
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// Dieser Code wurde von einem Tool generiert.
|
||||||
|
// Laufzeitversion:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||||
|
// der Code erneut generiert wird.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using Server_Dashboard;
|
||||||
|
using System;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System.Windows;
|
||||||
|
using System.Windows.Automation;
|
||||||
|
using System.Windows.Controls;
|
||||||
|
using System.Windows.Controls.Primitives;
|
||||||
|
using System.Windows.Controls.Ribbon;
|
||||||
|
using System.Windows.Data;
|
||||||
|
using System.Windows.Documents;
|
||||||
|
using System.Windows.Ink;
|
||||||
|
using System.Windows.Input;
|
||||||
|
using System.Windows.Markup;
|
||||||
|
using System.Windows.Media;
|
||||||
|
using System.Windows.Media.Animation;
|
||||||
|
using System.Windows.Media.Effects;
|
||||||
|
using System.Windows.Media.Imaging;
|
||||||
|
using System.Windows.Media.Media3D;
|
||||||
|
using System.Windows.Media.TextFormatting;
|
||||||
|
using System.Windows.Navigation;
|
||||||
|
using System.Windows.Shapes;
|
||||||
|
using System.Windows.Shell;
|
||||||
|
|
||||||
|
|
||||||
|
namespace Server_Dashboard {
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// App
|
||||||
|
/// </summary>
|
||||||
|
public partial class App : System.Windows.Application {
|
||||||
|
|
||||||
|
private bool _contentLoaded;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// InitializeComponent
|
||||||
|
/// </summary>
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.4.0")]
|
||||||
|
public void InitializeComponent() {
|
||||||
|
if (_contentLoaded) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_contentLoaded = true;
|
||||||
|
|
||||||
|
#line 5 "..\..\..\App.xaml"
|
||||||
|
this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
System.Uri resourceLocater = new System.Uri("/Server Dashboard;component/app.xaml", System.UriKind.Relative);
|
||||||
|
|
||||||
|
#line 1 "..\..\..\App.xaml"
|
||||||
|
System.Windows.Application.LoadComponent(this, resourceLocater);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Application Entry Point.
|
||||||
|
/// </summary>
|
||||||
|
[System.STAThreadAttribute()]
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.4.0")]
|
||||||
|
public static void Main() {
|
||||||
|
Server_Dashboard.App app = new Server_Dashboard.App();
|
||||||
|
app.InitializeComponent();
|
||||||
|
app.Run();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
84
Server Dashboard/obj/Debug/netcoreapp3.1/App.g.i.cs
Normal file
84
Server Dashboard/obj/Debug/netcoreapp3.1/App.g.i.cs
Normal file
@@ -0,0 +1,84 @@
|
|||||||
|
#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "CFAEA69073E0A9617DE983A1C17F812E8D11C797"
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// Dieser Code wurde von einem Tool generiert.
|
||||||
|
// Laufzeitversion:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||||
|
// der Code erneut generiert wird.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using Server_Dashboard;
|
||||||
|
using System;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System.Windows;
|
||||||
|
using System.Windows.Automation;
|
||||||
|
using System.Windows.Controls;
|
||||||
|
using System.Windows.Controls.Primitives;
|
||||||
|
using System.Windows.Controls.Ribbon;
|
||||||
|
using System.Windows.Data;
|
||||||
|
using System.Windows.Documents;
|
||||||
|
using System.Windows.Ink;
|
||||||
|
using System.Windows.Input;
|
||||||
|
using System.Windows.Markup;
|
||||||
|
using System.Windows.Media;
|
||||||
|
using System.Windows.Media.Animation;
|
||||||
|
using System.Windows.Media.Effects;
|
||||||
|
using System.Windows.Media.Imaging;
|
||||||
|
using System.Windows.Media.Media3D;
|
||||||
|
using System.Windows.Media.TextFormatting;
|
||||||
|
using System.Windows.Navigation;
|
||||||
|
using System.Windows.Shapes;
|
||||||
|
using System.Windows.Shell;
|
||||||
|
|
||||||
|
|
||||||
|
namespace Server_Dashboard {
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// App
|
||||||
|
/// </summary>
|
||||||
|
public partial class App : System.Windows.Application {
|
||||||
|
|
||||||
|
private bool _contentLoaded;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// InitializeComponent
|
||||||
|
/// </summary>
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.4.0")]
|
||||||
|
public void InitializeComponent() {
|
||||||
|
if (_contentLoaded) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_contentLoaded = true;
|
||||||
|
|
||||||
|
#line 5 "..\..\..\App.xaml"
|
||||||
|
this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
System.Uri resourceLocater = new System.Uri("/Server Dashboard;component/app.xaml", System.UriKind.Relative);
|
||||||
|
|
||||||
|
#line 1 "..\..\..\App.xaml"
|
||||||
|
System.Windows.Application.LoadComponent(this, resourceLocater);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Application Entry Point.
|
||||||
|
/// </summary>
|
||||||
|
[System.STAThreadAttribute()]
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.4.0")]
|
||||||
|
public static void Main() {
|
||||||
|
Server_Dashboard.App app = new Server_Dashboard.App();
|
||||||
|
app.InitializeComponent();
|
||||||
|
app.Run();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
BIN
Server Dashboard/obj/Debug/netcoreapp3.1/MainWindow.baml
Normal file
BIN
Server Dashboard/obj/Debug/netcoreapp3.1/MainWindow.baml
Normal file
Binary file not shown.
90
Server Dashboard/obj/Debug/netcoreapp3.1/MainWindow.g.cs
Normal file
90
Server Dashboard/obj/Debug/netcoreapp3.1/MainWindow.g.cs
Normal file
@@ -0,0 +1,90 @@
|
|||||||
|
#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "9936019F8F4F36AA14CB7E4E5EF102427D7DACAB"
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// Dieser Code wurde von einem Tool generiert.
|
||||||
|
// Laufzeitversion:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||||
|
// der Code erneut generiert wird.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using Server_Dashboard;
|
||||||
|
using System;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System.Windows;
|
||||||
|
using System.Windows.Automation;
|
||||||
|
using System.Windows.Controls;
|
||||||
|
using System.Windows.Controls.Primitives;
|
||||||
|
using System.Windows.Controls.Ribbon;
|
||||||
|
using System.Windows.Data;
|
||||||
|
using System.Windows.Documents;
|
||||||
|
using System.Windows.Ink;
|
||||||
|
using System.Windows.Input;
|
||||||
|
using System.Windows.Markup;
|
||||||
|
using System.Windows.Media;
|
||||||
|
using System.Windows.Media.Animation;
|
||||||
|
using System.Windows.Media.Effects;
|
||||||
|
using System.Windows.Media.Imaging;
|
||||||
|
using System.Windows.Media.Media3D;
|
||||||
|
using System.Windows.Media.TextFormatting;
|
||||||
|
using System.Windows.Navigation;
|
||||||
|
using System.Windows.Shapes;
|
||||||
|
using System.Windows.Shell;
|
||||||
|
|
||||||
|
|
||||||
|
namespace Server_Dashboard {
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// MainWindow
|
||||||
|
/// </summary>
|
||||||
|
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
|
||||||
|
|
||||||
|
|
||||||
|
#line 74 "..\..\..\MainWindow.xaml"
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
|
internal System.Windows.Controls.TextBlock LoginErrorText;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
private bool _contentLoaded;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// InitializeComponent
|
||||||
|
/// </summary>
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.4.0")]
|
||||||
|
public void InitializeComponent() {
|
||||||
|
if (_contentLoaded) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_contentLoaded = true;
|
||||||
|
System.Uri resourceLocater = new System.Uri("/Server Dashboard;component/mainwindow.xaml", System.UriKind.Relative);
|
||||||
|
|
||||||
|
#line 1 "..\..\..\MainWindow.xaml"
|
||||||
|
System.Windows.Application.LoadComponent(this, resourceLocater);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
}
|
||||||
|
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.4.0")]
|
||||||
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
|
||||||
|
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
|
||||||
|
switch (connectionId)
|
||||||
|
{
|
||||||
|
case 1:
|
||||||
|
this.LoginErrorText = ((System.Windows.Controls.TextBlock)(target));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this._contentLoaded = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
85
Server Dashboard/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs
Normal file
85
Server Dashboard/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
// Updated by XamlIntelliSenseFileGenerator 01.04.2021 15:13:25
|
||||||
|
#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "9936019F8F4F36AA14CB7E4E5EF102427D7DACAB"
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// Dieser Code wurde von einem Tool generiert.
|
||||||
|
// Laufzeitversion:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||||
|
// der Code erneut generiert wird.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using Server_Dashboard;
|
||||||
|
using System;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System.Windows;
|
||||||
|
using System.Windows.Automation;
|
||||||
|
using System.Windows.Controls;
|
||||||
|
using System.Windows.Controls.Primitives;
|
||||||
|
using System.Windows.Controls.Ribbon;
|
||||||
|
using System.Windows.Data;
|
||||||
|
using System.Windows.Documents;
|
||||||
|
using System.Windows.Ink;
|
||||||
|
using System.Windows.Input;
|
||||||
|
using System.Windows.Markup;
|
||||||
|
using System.Windows.Media;
|
||||||
|
using System.Windows.Media.Animation;
|
||||||
|
using System.Windows.Media.Effects;
|
||||||
|
using System.Windows.Media.Imaging;
|
||||||
|
using System.Windows.Media.Media3D;
|
||||||
|
using System.Windows.Media.TextFormatting;
|
||||||
|
using System.Windows.Navigation;
|
||||||
|
using System.Windows.Shapes;
|
||||||
|
using System.Windows.Shell;
|
||||||
|
|
||||||
|
|
||||||
|
namespace Server_Dashboard {
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// MainWindow
|
||||||
|
/// </summary>
|
||||||
|
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
private bool _contentLoaded;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// InitializeComponent
|
||||||
|
/// </summary>
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.4.0")]
|
||||||
|
public void InitializeComponent() {
|
||||||
|
if (_contentLoaded) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_contentLoaded = true;
|
||||||
|
System.Uri resourceLocater = new System.Uri("/Server Dashboard;component/mainwindow.xaml", System.UriKind.Relative);
|
||||||
|
|
||||||
|
#line 1 "..\..\..\MainWindow.xaml"
|
||||||
|
System.Windows.Application.LoadComponent(this, resourceLocater);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
}
|
||||||
|
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.4.0")]
|
||||||
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
|
||||||
|
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
|
||||||
|
switch (connectionId) {
|
||||||
|
case 1:
|
||||||
|
this.LoginErrorText = ((System.Windows.Controls.TextBlock)(target));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this._contentLoaded = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// Dieser Code wurde von einem Tool generiert.
|
||||||
|
// Laufzeitversion:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||||
|
// der Code erneut generiert wird.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("Server Dashboard")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("Server Dashboard")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("Server Dashboard")]
|
||||||
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|
||||||
|
// Von der MSBuild WriteCodeFragment-Klasse generiert.
|
||||||
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
45f373588aa70a6553d3fe1bb0d4167ecc899516
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
6699e56d9f98fbf62ee36edf4ef1257f3833dc76
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\bin\Debug\netcoreapp3.1\Server Dashboard.exe
|
||||||
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\bin\Debug\netcoreapp3.1\Server Dashboard.deps.json
|
||||||
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\bin\Debug\netcoreapp3.1\Server Dashboard.runtimeconfig.json
|
||||||
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\bin\Debug\netcoreapp3.1\Server Dashboard.runtimeconfig.dev.json
|
||||||
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\bin\Debug\netcoreapp3.1\Server Dashboard.dll
|
||||||
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\bin\Debug\netcoreapp3.1\Server Dashboard.pdb
|
||||||
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\obj\Debug\netcoreapp3.1\Server Dashboard.csprojAssemblyReference.cache
|
||||||
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\obj\Debug\netcoreapp3.1\MainWindow.g.cs
|
||||||
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\obj\Debug\netcoreapp3.1\App.g.cs
|
||||||
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\obj\Debug\netcoreapp3.1\Server Dashboard_MarkupCompile.cache
|
||||||
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\obj\Debug\netcoreapp3.1\Server Dashboard_MarkupCompile.lref
|
||||||
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\obj\Debug\netcoreapp3.1\MainWindow.baml
|
||||||
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\obj\Debug\netcoreapp3.1\Server Dashboard.g.resources
|
||||||
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\obj\Debug\netcoreapp3.1\Server Dashboard.AssemblyInfoInputs.cache
|
||||||
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\obj\Debug\netcoreapp3.1\Server Dashboard.AssemblyInfo.cs
|
||||||
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\obj\Debug\netcoreapp3.1\Server Dashboard.csproj.CoreCompileInputs.cache
|
||||||
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\obj\Debug\netcoreapp3.1\Server Dashboard.dll
|
||||||
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\obj\Debug\netcoreapp3.1\Server Dashboard.pdb
|
||||||
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\obj\Debug\netcoreapp3.1\Server Dashboard.genruntimeconfig.cache
|
||||||
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\bin\Debug\netcoreapp3.1\System.Data.SqlClient.dll
|
||||||
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\bin\Debug\netcoreapp3.1\runtimes\win-arm64\native\sni.dll
|
||||||
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\bin\Debug\netcoreapp3.1\runtimes\win-x64\native\sni.dll
|
||||||
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\bin\Debug\netcoreapp3.1\runtimes\win-x86\native\sni.dll
|
||||||
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\bin\Debug\netcoreapp3.1\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll
|
||||||
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll
|
||||||
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\obj\Debug\netcoreapp3.1\App.baml
|
||||||
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\obj\Debug\netcoreapp3.1\Server Dashboard.csproj.CopyComplete
|
||||||
Binary file not shown.
@@ -0,0 +1,206 @@
|
|||||||
|
{
|
||||||
|
"runtimeTarget": {
|
||||||
|
"name": ".NETCoreApp,Version=v3.1",
|
||||||
|
"signature": ""
|
||||||
|
},
|
||||||
|
"compilationOptions": {},
|
||||||
|
"targets": {
|
||||||
|
".NETCoreApp,Version=v3.1": {
|
||||||
|
"Microsoft.NETCore.Platforms/3.1.0": {},
|
||||||
|
"Microsoft.Win32.Registry/4.7.0": {
|
||||||
|
"dependencies": {
|
||||||
|
"System.Security.AccessControl": "4.7.0",
|
||||||
|
"System.Security.Principal.Windows": "4.7.0"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
|
||||||
|
"assemblyVersion": "4.1.3.0",
|
||||||
|
"fileVersion": "4.700.19.56404"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeTargets": {
|
||||||
|
"runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
|
||||||
|
"rid": "unix",
|
||||||
|
"assetType": "runtime",
|
||||||
|
"assemblyVersion": "4.1.3.0",
|
||||||
|
"fileVersion": "4.700.19.56404"
|
||||||
|
},
|
||||||
|
"runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
|
||||||
|
"rid": "win",
|
||||||
|
"assetType": "runtime",
|
||||||
|
"assemblyVersion": "4.1.3.0",
|
||||||
|
"fileVersion": "4.700.19.56404"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtime.native.System.Data.SqlClient.sni/4.7.0": {
|
||||||
|
"dependencies": {
|
||||||
|
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
|
||||||
|
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
|
||||||
|
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||||
|
"runtimeTargets": {
|
||||||
|
"runtimes/win-arm64/native/sni.dll": {
|
||||||
|
"rid": "win-arm64",
|
||||||
|
"assetType": "native",
|
||||||
|
"fileVersion": "4.6.25512.1"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||||
|
"runtimeTargets": {
|
||||||
|
"runtimes/win-x64/native/sni.dll": {
|
||||||
|
"rid": "win-x64",
|
||||||
|
"assetType": "native",
|
||||||
|
"fileVersion": "4.6.25512.1"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||||
|
"runtimeTargets": {
|
||||||
|
"runtimes/win-x86/native/sni.dll": {
|
||||||
|
"rid": "win-x86",
|
||||||
|
"assetType": "native",
|
||||||
|
"fileVersion": "4.6.25512.1"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Data.SqlClient/4.8.2": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Win32.Registry": "4.7.0",
|
||||||
|
"System.Security.Principal.Windows": "4.7.0",
|
||||||
|
"runtime.native.System.Data.SqlClient.sni": "4.7.0"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netcoreapp2.1/System.Data.SqlClient.dll": {
|
||||||
|
"assemblyVersion": "4.6.1.2",
|
||||||
|
"fileVersion": "4.700.20.37001"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeTargets": {
|
||||||
|
"runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
|
||||||
|
"rid": "unix",
|
||||||
|
"assetType": "runtime",
|
||||||
|
"assemblyVersion": "4.6.1.2",
|
||||||
|
"fileVersion": "4.700.20.37001"
|
||||||
|
},
|
||||||
|
"runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
|
||||||
|
"rid": "win",
|
||||||
|
"assetType": "runtime",
|
||||||
|
"assemblyVersion": "4.6.1.2",
|
||||||
|
"fileVersion": "4.700.20.37001"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Security.AccessControl/4.7.0": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.NETCore.Platforms": "3.1.0",
|
||||||
|
"System.Security.Principal.Windows": "4.7.0"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netstandard2.0/System.Security.AccessControl.dll": {
|
||||||
|
"assemblyVersion": "4.1.3.0",
|
||||||
|
"fileVersion": "4.700.19.56404"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeTargets": {
|
||||||
|
"runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
|
||||||
|
"rid": "win",
|
||||||
|
"assetType": "runtime",
|
||||||
|
"assemblyVersion": "4.1.3.0",
|
||||||
|
"fileVersion": "4.700.19.56404"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Security.Principal.Windows/4.7.0": {
|
||||||
|
"runtime": {
|
||||||
|
"lib/netstandard2.0/System.Security.Principal.Windows.dll": {
|
||||||
|
"assemblyVersion": "4.1.3.0",
|
||||||
|
"fileVersion": "4.700.19.56404"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeTargets": {
|
||||||
|
"runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
|
||||||
|
"rid": "unix",
|
||||||
|
"assetType": "runtime",
|
||||||
|
"assemblyVersion": "4.1.3.0",
|
||||||
|
"fileVersion": "4.700.19.56404"
|
||||||
|
},
|
||||||
|
"runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
|
||||||
|
"rid": "win",
|
||||||
|
"assetType": "runtime",
|
||||||
|
"assemblyVersion": "4.1.3.0",
|
||||||
|
"fileVersion": "4.700.19.56404"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"libraries": {
|
||||||
|
"Microsoft.NETCore.Platforms/3.1.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
|
||||||
|
"path": "microsoft.netcore.platforms/3.1.0",
|
||||||
|
"hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.Win32.Registry/4.7.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
|
||||||
|
"path": "microsoft.win32.registry/4.7.0",
|
||||||
|
"hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"runtime.native.System.Data.SqlClient.sni/4.7.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==",
|
||||||
|
"path": "runtime.native.system.data.sqlclient.sni/4.7.0",
|
||||||
|
"hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
|
||||||
|
"path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
|
||||||
|
"hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
|
||||||
|
"path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
|
||||||
|
"hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
|
||||||
|
"path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
|
||||||
|
"hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"System.Data.SqlClient/4.8.2": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-80vGtW6uLB4AkyrdVuKTXYUyuXDPAsSKbTVfvjndZaRAYxzFzWhJbvUfeAKrN+128ycWZjLIAl61dFUwWHOOTw==",
|
||||||
|
"path": "system.data.sqlclient/4.8.2",
|
||||||
|
"hashPath": "system.data.sqlclient.4.8.2.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"System.Security.AccessControl/4.7.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
|
||||||
|
"path": "system.security.accesscontrol/4.7.0",
|
||||||
|
"hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"System.Security.Principal.Windows/4.7.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
|
||||||
|
"path": "system.security.principal.windows/4.7.0",
|
||||||
|
"hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"runtimeOptions": {
|
||||||
|
"tfm": "netcoreapp3.1",
|
||||||
|
"framework": {
|
||||||
|
"name": "Microsoft.WindowsDesktop.App",
|
||||||
|
"version": "3.1.0"
|
||||||
|
},
|
||||||
|
"additionalProbingPaths": [
|
||||||
|
"C:\\Users\\Crylia\\.dotnet\\store\\|arch|\\|tfm|",
|
||||||
|
"C:\\Users\\Crylia\\.nuget\\packages",
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||||
|
],
|
||||||
|
"configProperties": {
|
||||||
|
"Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.dll
Normal file
BIN
Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.dll
Normal file
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
e8a931a40d22733eb51253b662909999c0ee2a2b
|
||||||
BIN
Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.pdb
Normal file
BIN
Server Dashboard/obj/Debug/netcoreapp3.1/Server Dashboard.pdb
Normal file
Binary file not shown.
@@ -0,0 +1,20 @@
|
|||||||
|
Server Dashboard
|
||||||
|
|
||||||
|
|
||||||
|
winexe
|
||||||
|
C#
|
||||||
|
.cs
|
||||||
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\obj\Debug\netcoreapp3.1\
|
||||||
|
Server_Dashboard
|
||||||
|
none
|
||||||
|
false
|
||||||
|
TRACE;DEBUG;NETCOREAPP;NETCOREAPP3_1;
|
||||||
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\App.xaml
|
||||||
|
11407045341
|
||||||
|
|
||||||
|
10-2015762917
|
||||||
|
193-833620683
|
||||||
|
MainWindow.xaml;
|
||||||
|
|
||||||
|
False
|
||||||
|
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
Server Dashboard
|
||||||
|
1.0.0.0
|
||||||
|
|
||||||
|
winexe
|
||||||
|
C#
|
||||||
|
.cs
|
||||||
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\obj\Debug\netcoreapp3.1\
|
||||||
|
Server_Dashboard
|
||||||
|
none
|
||||||
|
false
|
||||||
|
TRACE;DEBUG;NETCOREAPP;NETCOREAPP3_1;
|
||||||
|
C:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\App.xaml
|
||||||
|
11407045341
|
||||||
|
|
||||||
|
12679877109
|
||||||
|
193-833620683
|
||||||
|
MainWindow.xaml;
|
||||||
|
|
||||||
|
False
|
||||||
|
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
|
||||||
|
FC:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\App.xaml;;
|
||||||
|
FC:\Users\Crylia\Documents\Git\Server Dashboard\Server Dashboard\MainWindow.xaml;;
|
||||||
|
|
||||||
@@ -0,0 +1,76 @@
|
|||||||
|
#pragma checksum "..\..\..\..\Views\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "DDDA54B89F455FD3EF0255065426588E7037CDE9"
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// Dieser Code wurde von einem Tool generiert.
|
||||||
|
// Laufzeitversion:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||||
|
// der Code erneut generiert wird.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using Server_Dashboard;
|
||||||
|
using System;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System.Windows;
|
||||||
|
using System.Windows.Automation;
|
||||||
|
using System.Windows.Controls;
|
||||||
|
using System.Windows.Controls.Primitives;
|
||||||
|
using System.Windows.Controls.Ribbon;
|
||||||
|
using System.Windows.Data;
|
||||||
|
using System.Windows.Documents;
|
||||||
|
using System.Windows.Ink;
|
||||||
|
using System.Windows.Input;
|
||||||
|
using System.Windows.Markup;
|
||||||
|
using System.Windows.Media;
|
||||||
|
using System.Windows.Media.Animation;
|
||||||
|
using System.Windows.Media.Effects;
|
||||||
|
using System.Windows.Media.Imaging;
|
||||||
|
using System.Windows.Media.Media3D;
|
||||||
|
using System.Windows.Media.TextFormatting;
|
||||||
|
using System.Windows.Navigation;
|
||||||
|
using System.Windows.Shapes;
|
||||||
|
using System.Windows.Shell;
|
||||||
|
|
||||||
|
|
||||||
|
namespace Server_Dashboard {
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// MainWindow
|
||||||
|
/// </summary>
|
||||||
|
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
|
||||||
|
|
||||||
|
private bool _contentLoaded;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// InitializeComponent
|
||||||
|
/// </summary>
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.4.0")]
|
||||||
|
public void InitializeComponent() {
|
||||||
|
if (_contentLoaded) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_contentLoaded = true;
|
||||||
|
System.Uri resourceLocater = new System.Uri("/Server Dashboard;V1.0.0.0;component/views/mainwindow.xaml", System.UriKind.Relative);
|
||||||
|
|
||||||
|
#line 1 "..\..\..\..\Views\MainWindow.xaml"
|
||||||
|
System.Windows.Application.LoadComponent(this, resourceLocater);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
}
|
||||||
|
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.4.0")]
|
||||||
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
|
||||||
|
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
|
||||||
|
this._contentLoaded = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
BIN
Server Dashboard/obj/Debug/netcoreapp3.1/apphost.exe
Normal file
BIN
Server Dashboard/obj/Debug/netcoreapp3.1/apphost.exe
Normal file
Binary file not shown.
@@ -0,0 +1,75 @@
|
|||||||
|
{
|
||||||
|
"format": 1,
|
||||||
|
"restore": {
|
||||||
|
"C:\\Users\\Crylia\\Documents\\Git\\Server Dashboard\\Server Dashboard\\Server Dashboard.csproj": {}
|
||||||
|
},
|
||||||
|
"projects": {
|
||||||
|
"C:\\Users\\Crylia\\Documents\\Git\\Server Dashboard\\Server Dashboard\\Server Dashboard.csproj": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"restore": {
|
||||||
|
"projectUniqueName": "C:\\Users\\Crylia\\Documents\\Git\\Server Dashboard\\Server Dashboard\\Server Dashboard.csproj",
|
||||||
|
"projectName": "Server Dashboard",
|
||||||
|
"projectPath": "C:\\Users\\Crylia\\Documents\\Git\\Server Dashboard\\Server Dashboard\\Server Dashboard.csproj",
|
||||||
|
"packagesPath": "C:\\Users\\Crylia\\.nuget\\packages\\",
|
||||||
|
"outputPath": "C:\\Users\\Crylia\\Documents\\Git\\Server Dashboard\\Server Dashboard\\obj\\",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"fallbackFolders": [
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||||
|
],
|
||||||
|
"configFilePaths": [
|
||||||
|
"C:\\Users\\Crylia\\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"
|
||||||
|
],
|
||||||
|
"originalTargetFrameworks": [
|
||||||
|
"netcoreapp3.1"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||||
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"netcoreapp3.1": {
|
||||||
|
"targetAlias": "netcoreapp3.1",
|
||||||
|
"projectReferences": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"netcoreapp3.1": {
|
||||||
|
"targetAlias": "netcoreapp3.1",
|
||||||
|
"dependencies": {
|
||||||
|
"System.Data.SqlClient": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[4.8.2, )"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"imports": [
|
||||||
|
"net461",
|
||||||
|
"net462",
|
||||||
|
"net47",
|
||||||
|
"net471",
|
||||||
|
"net472",
|
||||||
|
"net48"
|
||||||
|
],
|
||||||
|
"assetTargetFallback": true,
|
||||||
|
"warn": true,
|
||||||
|
"frameworkReferences": {
|
||||||
|
"Microsoft.NETCore.App": {
|
||||||
|
"privateAssets": "all"
|
||||||
|
},
|
||||||
|
"Microsoft.WindowsDesktop.App.WPF": {
|
||||||
|
"privateAssets": "none"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
19
Server Dashboard/obj/Server Dashboard.csproj.nuget.g.props
Normal file
19
Server Dashboard/obj/Server Dashboard.csproj.nuget.g.props
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||||
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||||
|
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||||
|
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||||
|
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||||
|
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Crylia\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||||
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.9.1</NuGetToolVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<SourceRoot Include="C:\Users\Crylia\.nuget\packages\" />
|
||||||
|
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||||
|
</ItemGroup>
|
||||||
|
<PropertyGroup>
|
||||||
|
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||||
|
</PropertyGroup>
|
||||||
|
</Project>
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||||
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup>
|
||||||
|
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||||
|
</PropertyGroup>
|
||||||
|
</Project>
|
||||||
527
Server Dashboard/obj/project.assets.json
Normal file
527
Server Dashboard/obj/project.assets.json
Normal file
@@ -0,0 +1,527 @@
|
|||||||
|
{
|
||||||
|
"version": 3,
|
||||||
|
"targets": {
|
||||||
|
".NETCoreApp,Version=v3.1": {
|
||||||
|
"Microsoft.NETCore.Platforms/3.1.0": {
|
||||||
|
"type": "package",
|
||||||
|
"compile": {
|
||||||
|
"lib/netstandard1.0/_._": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netstandard1.0/_._": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.Win32.Registry/4.7.0": {
|
||||||
|
"type": "package",
|
||||||
|
"dependencies": {
|
||||||
|
"System.Security.AccessControl": "4.7.0",
|
||||||
|
"System.Security.Principal.Windows": "4.7.0"
|
||||||
|
},
|
||||||
|
"compile": {
|
||||||
|
"ref/netstandard2.0/_._": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netstandard2.0/Microsoft.Win32.Registry.dll": {}
|
||||||
|
},
|
||||||
|
"runtimeTargets": {
|
||||||
|
"runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
|
||||||
|
"assetType": "runtime",
|
||||||
|
"rid": "unix"
|
||||||
|
},
|
||||||
|
"runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
|
||||||
|
"assetType": "runtime",
|
||||||
|
"rid": "win"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtime.native.System.Data.SqlClient.sni/4.7.0": {
|
||||||
|
"type": "package",
|
||||||
|
"dependencies": {
|
||||||
|
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
|
||||||
|
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
|
||||||
|
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||||
|
"type": "package",
|
||||||
|
"runtimeTargets": {
|
||||||
|
"runtimes/win-arm64/native/sni.dll": {
|
||||||
|
"assetType": "native",
|
||||||
|
"rid": "win-arm64"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||||
|
"type": "package",
|
||||||
|
"runtimeTargets": {
|
||||||
|
"runtimes/win-x64/native/sni.dll": {
|
||||||
|
"assetType": "native",
|
||||||
|
"rid": "win-x64"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||||
|
"type": "package",
|
||||||
|
"runtimeTargets": {
|
||||||
|
"runtimes/win-x86/native/sni.dll": {
|
||||||
|
"assetType": "native",
|
||||||
|
"rid": "win-x86"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Data.SqlClient/4.8.2": {
|
||||||
|
"type": "package",
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Win32.Registry": "4.7.0",
|
||||||
|
"System.Security.Principal.Windows": "4.7.0",
|
||||||
|
"runtime.native.System.Data.SqlClient.sni": "4.7.0"
|
||||||
|
},
|
||||||
|
"compile": {
|
||||||
|
"ref/netcoreapp2.1/System.Data.SqlClient.dll": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netcoreapp2.1/System.Data.SqlClient.dll": {}
|
||||||
|
},
|
||||||
|
"runtimeTargets": {
|
||||||
|
"runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
|
||||||
|
"assetType": "runtime",
|
||||||
|
"rid": "unix"
|
||||||
|
},
|
||||||
|
"runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
|
||||||
|
"assetType": "runtime",
|
||||||
|
"rid": "win"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Security.AccessControl/4.7.0": {
|
||||||
|
"type": "package",
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.NETCore.Platforms": "3.1.0",
|
||||||
|
"System.Security.Principal.Windows": "4.7.0"
|
||||||
|
},
|
||||||
|
"compile": {
|
||||||
|
"ref/netstandard2.0/_._": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netstandard2.0/System.Security.AccessControl.dll": {}
|
||||||
|
},
|
||||||
|
"runtimeTargets": {
|
||||||
|
"runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
|
||||||
|
"assetType": "runtime",
|
||||||
|
"rid": "win"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Security.Principal.Windows/4.7.0": {
|
||||||
|
"type": "package",
|
||||||
|
"compile": {
|
||||||
|
"ref/netcoreapp3.0/_._": {}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
|
||||||
|
},
|
||||||
|
"runtimeTargets": {
|
||||||
|
"runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
|
||||||
|
"assetType": "runtime",
|
||||||
|
"rid": "unix"
|
||||||
|
},
|
||||||
|
"runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
|
||||||
|
"assetType": "runtime",
|
||||||
|
"rid": "win"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"libraries": {
|
||||||
|
"Microsoft.NETCore.Platforms/3.1.0": {
|
||||||
|
"sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "microsoft.netcore.platforms/3.1.0",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"LICENSE.TXT",
|
||||||
|
"THIRD-PARTY-NOTICES.TXT",
|
||||||
|
"lib/netstandard1.0/_._",
|
||||||
|
"microsoft.netcore.platforms.3.1.0.nupkg.sha512",
|
||||||
|
"microsoft.netcore.platforms.nuspec",
|
||||||
|
"runtime.json",
|
||||||
|
"useSharedDesignerContext.txt",
|
||||||
|
"version.txt"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Microsoft.Win32.Registry/4.7.0": {
|
||||||
|
"sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "microsoft.win32.registry/4.7.0",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"LICENSE.TXT",
|
||||||
|
"THIRD-PARTY-NOTICES.TXT",
|
||||||
|
"lib/net46/Microsoft.Win32.Registry.dll",
|
||||||
|
"lib/net461/Microsoft.Win32.Registry.dll",
|
||||||
|
"lib/net461/Microsoft.Win32.Registry.xml",
|
||||||
|
"lib/netstandard1.3/Microsoft.Win32.Registry.dll",
|
||||||
|
"lib/netstandard2.0/Microsoft.Win32.Registry.dll",
|
||||||
|
"lib/netstandard2.0/Microsoft.Win32.Registry.xml",
|
||||||
|
"microsoft.win32.registry.4.7.0.nupkg.sha512",
|
||||||
|
"microsoft.win32.registry.nuspec",
|
||||||
|
"ref/net46/Microsoft.Win32.Registry.dll",
|
||||||
|
"ref/net461/Microsoft.Win32.Registry.dll",
|
||||||
|
"ref/net461/Microsoft.Win32.Registry.xml",
|
||||||
|
"ref/net472/Microsoft.Win32.Registry.dll",
|
||||||
|
"ref/net472/Microsoft.Win32.Registry.xml",
|
||||||
|
"ref/netstandard1.3/Microsoft.Win32.Registry.dll",
|
||||||
|
"ref/netstandard1.3/Microsoft.Win32.Registry.xml",
|
||||||
|
"ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
|
||||||
|
"ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
|
||||||
|
"ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
|
||||||
|
"ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
|
||||||
|
"ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
|
||||||
|
"ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
|
||||||
|
"ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
|
||||||
|
"ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
|
||||||
|
"ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
|
||||||
|
"ref/netstandard2.0/Microsoft.Win32.Registry.dll",
|
||||||
|
"ref/netstandard2.0/Microsoft.Win32.Registry.xml",
|
||||||
|
"runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
|
||||||
|
"runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
|
||||||
|
"runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
|
||||||
|
"runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
|
||||||
|
"runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
|
||||||
|
"runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
|
||||||
|
"runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
|
||||||
|
"runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
|
||||||
|
"useSharedDesignerContext.txt",
|
||||||
|
"version.txt"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"runtime.native.System.Data.SqlClient.sni/4.7.0": {
|
||||||
|
"sha512": "9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "runtime.native.system.data.sqlclient.sni/4.7.0",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"LICENSE.TXT",
|
||||||
|
"THIRD-PARTY-NOTICES.TXT",
|
||||||
|
"runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512",
|
||||||
|
"runtime.native.system.data.sqlclient.sni.nuspec",
|
||||||
|
"useSharedDesignerContext.txt",
|
||||||
|
"version.txt"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||||
|
"sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"ThirdPartyNotices.txt",
|
||||||
|
"dotnet_library_license.txt",
|
||||||
|
"runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
|
||||||
|
"runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec",
|
||||||
|
"runtimes/win-arm64/native/sni.dll",
|
||||||
|
"useSharedDesignerContext.txt",
|
||||||
|
"version.txt"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||||
|
"sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"ThirdPartyNotices.txt",
|
||||||
|
"dotnet_library_license.txt",
|
||||||
|
"runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
|
||||||
|
"runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec",
|
||||||
|
"runtimes/win-x64/native/sni.dll",
|
||||||
|
"useSharedDesignerContext.txt",
|
||||||
|
"version.txt"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
|
||||||
|
"sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"ThirdPartyNotices.txt",
|
||||||
|
"dotnet_library_license.txt",
|
||||||
|
"runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
|
||||||
|
"runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec",
|
||||||
|
"runtimes/win-x86/native/sni.dll",
|
||||||
|
"useSharedDesignerContext.txt",
|
||||||
|
"version.txt"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"System.Data.SqlClient/4.8.2": {
|
||||||
|
"sha512": "80vGtW6uLB4AkyrdVuKTXYUyuXDPAsSKbTVfvjndZaRAYxzFzWhJbvUfeAKrN+128ycWZjLIAl61dFUwWHOOTw==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "system.data.sqlclient/4.8.2",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"Icon.png",
|
||||||
|
"LICENSE.TXT",
|
||||||
|
"THIRD-PARTY-NOTICES.TXT",
|
||||||
|
"lib/MonoAndroid10/_._",
|
||||||
|
"lib/MonoTouch10/_._",
|
||||||
|
"lib/net451/System.Data.SqlClient.dll",
|
||||||
|
"lib/net46/System.Data.SqlClient.dll",
|
||||||
|
"lib/net461/System.Data.SqlClient.dll",
|
||||||
|
"lib/net461/System.Data.SqlClient.xml",
|
||||||
|
"lib/netcoreapp2.1/System.Data.SqlClient.dll",
|
||||||
|
"lib/netcoreapp2.1/System.Data.SqlClient.xml",
|
||||||
|
"lib/netstandard1.2/System.Data.SqlClient.dll",
|
||||||
|
"lib/netstandard1.2/System.Data.SqlClient.xml",
|
||||||
|
"lib/netstandard1.3/System.Data.SqlClient.dll",
|
||||||
|
"lib/netstandard1.3/System.Data.SqlClient.xml",
|
||||||
|
"lib/netstandard2.0/System.Data.SqlClient.dll",
|
||||||
|
"lib/netstandard2.0/System.Data.SqlClient.xml",
|
||||||
|
"lib/xamarinios10/_._",
|
||||||
|
"lib/xamarinmac20/_._",
|
||||||
|
"lib/xamarintvos10/_._",
|
||||||
|
"lib/xamarinwatchos10/_._",
|
||||||
|
"ref/MonoAndroid10/_._",
|
||||||
|
"ref/MonoTouch10/_._",
|
||||||
|
"ref/net451/System.Data.SqlClient.dll",
|
||||||
|
"ref/net46/System.Data.SqlClient.dll",
|
||||||
|
"ref/net461/System.Data.SqlClient.dll",
|
||||||
|
"ref/net461/System.Data.SqlClient.xml",
|
||||||
|
"ref/netcoreapp2.1/System.Data.SqlClient.dll",
|
||||||
|
"ref/netcoreapp2.1/System.Data.SqlClient.xml",
|
||||||
|
"ref/netstandard1.2/System.Data.SqlClient.dll",
|
||||||
|
"ref/netstandard1.2/System.Data.SqlClient.xml",
|
||||||
|
"ref/netstandard1.2/de/System.Data.SqlClient.xml",
|
||||||
|
"ref/netstandard1.2/es/System.Data.SqlClient.xml",
|
||||||
|
"ref/netstandard1.2/fr/System.Data.SqlClient.xml",
|
||||||
|
"ref/netstandard1.2/it/System.Data.SqlClient.xml",
|
||||||
|
"ref/netstandard1.2/ja/System.Data.SqlClient.xml",
|
||||||
|
"ref/netstandard1.2/ko/System.Data.SqlClient.xml",
|
||||||
|
"ref/netstandard1.2/ru/System.Data.SqlClient.xml",
|
||||||
|
"ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml",
|
||||||
|
"ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml",
|
||||||
|
"ref/netstandard1.3/System.Data.SqlClient.dll",
|
||||||
|
"ref/netstandard1.3/System.Data.SqlClient.xml",
|
||||||
|
"ref/netstandard1.3/de/System.Data.SqlClient.xml",
|
||||||
|
"ref/netstandard1.3/es/System.Data.SqlClient.xml",
|
||||||
|
"ref/netstandard1.3/fr/System.Data.SqlClient.xml",
|
||||||
|
"ref/netstandard1.3/it/System.Data.SqlClient.xml",
|
||||||
|
"ref/netstandard1.3/ja/System.Data.SqlClient.xml",
|
||||||
|
"ref/netstandard1.3/ko/System.Data.SqlClient.xml",
|
||||||
|
"ref/netstandard1.3/ru/System.Data.SqlClient.xml",
|
||||||
|
"ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml",
|
||||||
|
"ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml",
|
||||||
|
"ref/netstandard2.0/System.Data.SqlClient.dll",
|
||||||
|
"ref/netstandard2.0/System.Data.SqlClient.xml",
|
||||||
|
"ref/xamarinios10/_._",
|
||||||
|
"ref/xamarinmac20/_._",
|
||||||
|
"ref/xamarintvos10/_._",
|
||||||
|
"ref/xamarinwatchos10/_._",
|
||||||
|
"runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll",
|
||||||
|
"runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.xml",
|
||||||
|
"runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll",
|
||||||
|
"runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll",
|
||||||
|
"runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.xml",
|
||||||
|
"runtimes/win/lib/net451/System.Data.SqlClient.dll",
|
||||||
|
"runtimes/win/lib/net46/System.Data.SqlClient.dll",
|
||||||
|
"runtimes/win/lib/net461/System.Data.SqlClient.dll",
|
||||||
|
"runtimes/win/lib/net461/System.Data.SqlClient.xml",
|
||||||
|
"runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll",
|
||||||
|
"runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.xml",
|
||||||
|
"runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll",
|
||||||
|
"runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll",
|
||||||
|
"runtimes/win/lib/netstandard2.0/System.Data.SqlClient.xml",
|
||||||
|
"runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll",
|
||||||
|
"runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.xml",
|
||||||
|
"system.data.sqlclient.4.8.2.nupkg.sha512",
|
||||||
|
"system.data.sqlclient.nuspec",
|
||||||
|
"useSharedDesignerContext.txt",
|
||||||
|
"version.txt"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"System.Security.AccessControl/4.7.0": {
|
||||||
|
"sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "system.security.accesscontrol/4.7.0",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"LICENSE.TXT",
|
||||||
|
"THIRD-PARTY-NOTICES.TXT",
|
||||||
|
"lib/net46/System.Security.AccessControl.dll",
|
||||||
|
"lib/net461/System.Security.AccessControl.dll",
|
||||||
|
"lib/net461/System.Security.AccessControl.xml",
|
||||||
|
"lib/netstandard1.3/System.Security.AccessControl.dll",
|
||||||
|
"lib/netstandard2.0/System.Security.AccessControl.dll",
|
||||||
|
"lib/netstandard2.0/System.Security.AccessControl.xml",
|
||||||
|
"lib/uap10.0.16299/_._",
|
||||||
|
"ref/net46/System.Security.AccessControl.dll",
|
||||||
|
"ref/net461/System.Security.AccessControl.dll",
|
||||||
|
"ref/net461/System.Security.AccessControl.xml",
|
||||||
|
"ref/netstandard1.3/System.Security.AccessControl.dll",
|
||||||
|
"ref/netstandard1.3/System.Security.AccessControl.xml",
|
||||||
|
"ref/netstandard1.3/de/System.Security.AccessControl.xml",
|
||||||
|
"ref/netstandard1.3/es/System.Security.AccessControl.xml",
|
||||||
|
"ref/netstandard1.3/fr/System.Security.AccessControl.xml",
|
||||||
|
"ref/netstandard1.3/it/System.Security.AccessControl.xml",
|
||||||
|
"ref/netstandard1.3/ja/System.Security.AccessControl.xml",
|
||||||
|
"ref/netstandard1.3/ko/System.Security.AccessControl.xml",
|
||||||
|
"ref/netstandard1.3/ru/System.Security.AccessControl.xml",
|
||||||
|
"ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
|
||||||
|
"ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
|
||||||
|
"ref/netstandard2.0/System.Security.AccessControl.dll",
|
||||||
|
"ref/netstandard2.0/System.Security.AccessControl.xml",
|
||||||
|
"ref/uap10.0.16299/_._",
|
||||||
|
"runtimes/win/lib/net46/System.Security.AccessControl.dll",
|
||||||
|
"runtimes/win/lib/net461/System.Security.AccessControl.dll",
|
||||||
|
"runtimes/win/lib/net461/System.Security.AccessControl.xml",
|
||||||
|
"runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
|
||||||
|
"runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
|
||||||
|
"runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
|
||||||
|
"runtimes/win/lib/uap10.0.16299/_._",
|
||||||
|
"system.security.accesscontrol.4.7.0.nupkg.sha512",
|
||||||
|
"system.security.accesscontrol.nuspec",
|
||||||
|
"useSharedDesignerContext.txt",
|
||||||
|
"version.txt"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"System.Security.Principal.Windows/4.7.0": {
|
||||||
|
"sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "system.security.principal.windows/4.7.0",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"LICENSE.TXT",
|
||||||
|
"THIRD-PARTY-NOTICES.TXT",
|
||||||
|
"lib/net46/System.Security.Principal.Windows.dll",
|
||||||
|
"lib/net461/System.Security.Principal.Windows.dll",
|
||||||
|
"lib/net461/System.Security.Principal.Windows.xml",
|
||||||
|
"lib/netstandard1.3/System.Security.Principal.Windows.dll",
|
||||||
|
"lib/netstandard2.0/System.Security.Principal.Windows.dll",
|
||||||
|
"lib/netstandard2.0/System.Security.Principal.Windows.xml",
|
||||||
|
"lib/uap10.0.16299/_._",
|
||||||
|
"ref/net46/System.Security.Principal.Windows.dll",
|
||||||
|
"ref/net461/System.Security.Principal.Windows.dll",
|
||||||
|
"ref/net461/System.Security.Principal.Windows.xml",
|
||||||
|
"ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
|
||||||
|
"ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
|
||||||
|
"ref/netstandard1.3/System.Security.Principal.Windows.dll",
|
||||||
|
"ref/netstandard1.3/System.Security.Principal.Windows.xml",
|
||||||
|
"ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
|
||||||
|
"ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
|
||||||
|
"ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
|
||||||
|
"ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
|
||||||
|
"ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
|
||||||
|
"ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
|
||||||
|
"ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
|
||||||
|
"ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
|
||||||
|
"ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
|
||||||
|
"ref/netstandard2.0/System.Security.Principal.Windows.dll",
|
||||||
|
"ref/netstandard2.0/System.Security.Principal.Windows.xml",
|
||||||
|
"ref/uap10.0.16299/_._",
|
||||||
|
"runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
|
||||||
|
"runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
|
||||||
|
"runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
|
||||||
|
"runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
|
||||||
|
"runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
|
||||||
|
"runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
|
||||||
|
"runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
|
||||||
|
"runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
|
||||||
|
"runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
|
||||||
|
"runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
|
||||||
|
"runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
|
||||||
|
"runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
|
||||||
|
"runtimes/win/lib/uap10.0.16299/_._",
|
||||||
|
"system.security.principal.windows.4.7.0.nupkg.sha512",
|
||||||
|
"system.security.principal.windows.nuspec",
|
||||||
|
"useSharedDesignerContext.txt",
|
||||||
|
"version.txt"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"projectFileDependencyGroups": {
|
||||||
|
".NETCoreApp,Version=v3.1": [
|
||||||
|
"System.Data.SqlClient >= 4.8.2"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"packageFolders": {
|
||||||
|
"C:\\Users\\Crylia\\.nuget\\packages\\": {},
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
|
||||||
|
},
|
||||||
|
"project": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"restore": {
|
||||||
|
"projectUniqueName": "C:\\Users\\Crylia\\Documents\\Git\\Server Dashboard\\Server Dashboard\\Server Dashboard.csproj",
|
||||||
|
"projectName": "Server Dashboard",
|
||||||
|
"projectPath": "C:\\Users\\Crylia\\Documents\\Git\\Server Dashboard\\Server Dashboard\\Server Dashboard.csproj",
|
||||||
|
"packagesPath": "C:\\Users\\Crylia\\.nuget\\packages\\",
|
||||||
|
"outputPath": "C:\\Users\\Crylia\\Documents\\Git\\Server Dashboard\\Server Dashboard\\obj\\",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"fallbackFolders": [
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||||
|
],
|
||||||
|
"configFilePaths": [
|
||||||
|
"C:\\Users\\Crylia\\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"
|
||||||
|
],
|
||||||
|
"originalTargetFrameworks": [
|
||||||
|
"netcoreapp3.1"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||||
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"netcoreapp3.1": {
|
||||||
|
"targetAlias": "netcoreapp3.1",
|
||||||
|
"projectReferences": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"netcoreapp3.1": {
|
||||||
|
"targetAlias": "netcoreapp3.1",
|
||||||
|
"dependencies": {
|
||||||
|
"System.Data.SqlClient": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[4.8.2, )"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"imports": [
|
||||||
|
"net461",
|
||||||
|
"net462",
|
||||||
|
"net47",
|
||||||
|
"net471",
|
||||||
|
"net472",
|
||||||
|
"net48"
|
||||||
|
],
|
||||||
|
"assetTargetFallback": true,
|
||||||
|
"warn": true,
|
||||||
|
"frameworkReferences": {
|
||||||
|
"Microsoft.NETCore.App": {
|
||||||
|
"privateAssets": "all"
|
||||||
|
},
|
||||||
|
"Microsoft.WindowsDesktop.App.WPF": {
|
||||||
|
"privateAssets": "none"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
18
Server Dashboard/obj/project.nuget.cache
Normal file
18
Server Dashboard/obj/project.nuget.cache
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"version": 2,
|
||||||
|
"dgSpecHash": "Ys8lDS/3T/6A/sckiwSOsrsN0Lv8FKN7haYCcS3mkpDpqXsorYgNFm3xwecHcRSPPhR8+xRgpeJ1c3ShYikNbg==",
|
||||||
|
"success": true,
|
||||||
|
"projectFilePath": "C:\\Users\\Crylia\\Documents\\Git\\Server Dashboard\\Server Dashboard\\Server Dashboard.csproj",
|
||||||
|
"expectedPackageFiles": [
|
||||||
|
"C:\\Users\\Crylia\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\Crylia\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\Crylia\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.7.0\\runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\Crylia\\.nuget\\packages\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\Crylia\\.nuget\\packages\\runtime.win-x64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\Crylia\\.nuget\\packages\\runtime.win-x86.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\Crylia\\.nuget\\packages\\system.data.sqlclient\\4.8.2\\system.data.sqlclient.4.8.2.nupkg.sha512",
|
||||||
|
"C:\\Users\\Crylia\\.nuget\\packages\\system.security.accesscontrol\\4.7.0\\system.security.accesscontrol.4.7.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\Crylia\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512"
|
||||||
|
],
|
||||||
|
"logs": []
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user