- vs changes

pull/26/head
Simon G 6 years ago
parent 91e48cd387
commit b36dff749f
  1. 14
      GBase.Api/GBase.Api.csproj
  2. 14
      GBase.Client/GBase.Client.csproj
  3. 16
      GBase.Server/GBase.Server.csproj
  4. 28
      GBase.Server/Program.cs
  5. 334
      GBase/GBase.xml

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework> <TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup> </PropertyGroup>
</Project> </Project>

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework> <TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup> </PropertyGroup>
</Project> </Project>

@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework> <TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup> </PropertyGroup>
</Project> </Project>

@ -1,14 +1,14 @@
// Author: Gockner, Simon // Author: Gockner, Simon
// Created: 2020-02-07 // Created: 2020-02-07
// Copyright(c) 2020 SimonG. All Rights Reserved. // Copyright(c) 2020 SimonG. All Rights Reserved.
namespace GBase.Server namespace GBase.Server
{ {
class Program class Program
{ {
static void Main(string[] args) static void Main(string[] args)
{ {
} }
} }
} }

@ -1,167 +1,167 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<doc> <doc>
<assembly> <assembly>
<name>GBase</name> <name>GBase</name>
</assembly> </assembly>
<members> <members>
<member name="T:GBase.Attributes.GBaseEntryAttribute"> <member name="T:GBase.Attributes.GBaseEntryAttribute">
<summary> <summary>
Tags a property as an <see cref="T:GBase.Interfaces.IGBaseEntry"/> Tags a property as an <see cref="T:GBase.Interfaces.IGBaseEntry"/>
</summary> </summary>
</member> </member>
<member name="E:GBase.Attributes.GBaseEntryAttribute.ValueChanged"> <member name="E:GBase.Attributes.GBaseEntryAttribute.ValueChanged">
<summary> <summary>
The value of the linked property changed The value of the linked property changed
</summary> </summary>
</member> </member>
<member name="T:GBase.Attributes.GBaseTableAttribute"> <member name="T:GBase.Attributes.GBaseTableAttribute">
<summary> <summary>
Tags a class as a <see cref="T:GBase.Interfaces.IGBaseTable"/> Tags a class as a <see cref="T:GBase.Interfaces.IGBaseTable"/>
</summary> </summary>
</member> </member>
<member name="T:GBase.GBaseEntry"> <member name="T:GBase.GBaseEntry">
<summary> <summary>
An entry of a <see cref="T:GBase.Interfaces.IGBaseTable"/> An entry of a <see cref="T:GBase.Interfaces.IGBaseTable"/>
</summary> </summary>
</member> </member>
<member name="M:GBase.GBaseEntry.#ctor"> <member name="M:GBase.GBaseEntry.#ctor">
<summary> <summary>
An entry of a <see cref="T:GBase.Interfaces.IGBaseTable"/> An entry of a <see cref="T:GBase.Interfaces.IGBaseTable"/>
</summary> </summary>
</member> </member>
<member name="T:GBase.GBaseTable"> <member name="T:GBase.GBaseTable">
<summary> <summary>
A <see cref="T:GBase.Interfaces.IGBase"/> table A <see cref="T:GBase.Interfaces.IGBase"/> table
</summary> </summary>
</member> </member>
<member name="M:GBase.GBaseTable.#ctor"> <member name="M:GBase.GBaseTable.#ctor">
<summary> <summary>
A <see cref="T:GBase.Interfaces.IGBase"/> table A <see cref="T:GBase.Interfaces.IGBase"/> table
</summary> </summary>
</member> </member>
<member name="P:GBase.GBaseTable.Type"> <member name="P:GBase.GBaseTable.Type">
<summary> <summary>
The <see cref="T:System.Type"/> of the class that this <see cref="T:GBase.Interfaces.IGBaseTable"/> represents The <see cref="T:System.Type"/> of the class that this <see cref="T:GBase.Interfaces.IGBaseTable"/> represents
</summary> </summary>
</member> </member>
<member name="P:GBase.GBaseTable.Name"> <member name="P:GBase.GBaseTable.Name">
<summary> <summary>
The name of this <see cref="T:GBase.Interfaces.IGBaseTable"/> The name of this <see cref="T:GBase.Interfaces.IGBaseTable"/>
</summary> </summary>
</member> </member>
<member name="P:GBase.GBaseTable.Entries"> <member name="P:GBase.GBaseTable.Entries">
<summary> <summary>
The <see cref="T:GBase.Interfaces.IGBaseEntry"/>s of this <see cref="T:GBase.Interfaces.IGBaseTable"/> The <see cref="T:GBase.Interfaces.IGBaseEntry"/>s of this <see cref="T:GBase.Interfaces.IGBaseTable"/>
</summary> </summary>
</member> </member>
<member name="M:GBase.GBaseTable.Init(System.Type,System.String,System.Threading.CancellationToken)"> <member name="M:GBase.GBaseTable.Init(System.Type,System.String,System.Threading.CancellationToken)">
<summary> <summary>
Initialize this <see cref="T:GBase.Interfaces.IGBase"/> Initialize this <see cref="T:GBase.Interfaces.IGBase"/>
</summary> </summary>
<param name="type">The <see cref="T:System.Type"/> of the class that this <see cref="T:GBase.Interfaces.IGBaseTable"/> represents</param> <param name="type">The <see cref="T:System.Type"/> of the class that this <see cref="T:GBase.Interfaces.IGBaseTable"/> represents</param>
<param name="name">The name of this <see cref="T:GBase.Interfaces.IGBaseTable"/></param> <param name="name">The name of this <see cref="T:GBase.Interfaces.IGBaseTable"/></param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken"/> to cancel the asynchronous operation</param> <param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken"/> to cancel the asynchronous operation</param>
<returns>True if successful, false if not</returns> <returns>True if successful, false if not</returns>
</member> </member>
<member name="M:GBase.GBaseTable.DisposeAsync"> <member name="M:GBase.GBaseTable.DisposeAsync">
<summary> <summary>
The <see cref="M:System.IAsyncDisposable.DisposeAsync"/> method The <see cref="M:System.IAsyncDisposable.DisposeAsync"/> method
</summary> </summary>
<returns>A <see cref="T:System.Threading.Tasks.ValueTask"/> to await</returns> <returns>A <see cref="T:System.Threading.Tasks.ValueTask"/> to await</returns>
</member> </member>
<member name="T:GBase.Interfaces.FileHandling.IFileHandler"> <member name="T:GBase.Interfaces.FileHandling.IFileHandler">
<summary> <summary>
Internal file handler Internal file handler
</summary> </summary>
</member> </member>
<member name="M:GBase.Interfaces.FileHandling.IFileHandler.Init(System.String,System.Threading.CancellationToken)"> <member name="M:GBase.Interfaces.FileHandling.IFileHandler.Init(System.String,System.Threading.CancellationToken)">
<summary> <summary>
Initialize this <see cref="T:GBase.Interfaces.FileHandling.IFileHandler"/> Initialize this <see cref="T:GBase.Interfaces.FileHandling.IFileHandler"/>
</summary> </summary>
<param name="path">The path of the database</param> <param name="path">The path of the database</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken"/> to cancel the asynchronous operation</param> <param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken"/> to cancel the asynchronous operation</param>
<returns>True if successful, false if not</returns> <returns>True if successful, false if not</returns>
</member> </member>
<member name="T:GBase.Interfaces.IGBase"> <member name="T:GBase.Interfaces.IGBase">
<summary> <summary>
The base class of the GBase database The base class of the GBase database
</summary> </summary>
</member> </member>
<member name="P:GBase.Interfaces.IGBase.Name"> <member name="P:GBase.Interfaces.IGBase.Name">
<summary> <summary>
The name of this <see cref="T:GBase.Interfaces.IGBase"/> The name of this <see cref="T:GBase.Interfaces.IGBase"/>
</summary> </summary>
</member> </member>
<member name="P:GBase.Interfaces.IGBase.Settings"> <member name="P:GBase.Interfaces.IGBase.Settings">
<summary> <summary>
The settings of this <see cref="T:GBase.Interfaces.IGBase"/> The settings of this <see cref="T:GBase.Interfaces.IGBase"/>
</summary> </summary>
</member> </member>
<member name="P:GBase.Interfaces.IGBase.Tables"> <member name="P:GBase.Interfaces.IGBase.Tables">
<summary> <summary>
The <see cref="T:GBase.Interfaces.IGBaseTable"/>s of this <see cref="T:GBase.Interfaces.IGBase"/> The <see cref="T:GBase.Interfaces.IGBaseTable"/>s of this <see cref="T:GBase.Interfaces.IGBase"/>
</summary> </summary>
</member> </member>
<member name="M:GBase.Interfaces.IGBase.Init(System.String,System.Threading.CancellationToken)"> <member name="M:GBase.Interfaces.IGBase.Init(System.String,System.Threading.CancellationToken)">
<summary> <summary>
Initialize this <see cref="T:GBase.Interfaces.IGBase"/> Initialize this <see cref="T:GBase.Interfaces.IGBase"/>
</summary> </summary>
<param name="name">The name of this <see cref="T:GBase.Interfaces.IGBase"/></param> <param name="name">The name of this <see cref="T:GBase.Interfaces.IGBase"/></param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken"/> to cancel the asynchronous operation</param> <param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken"/> to cancel the asynchronous operation</param>
<returns>True if successful, false if not</returns> <returns>True if successful, false if not</returns>
</member> </member>
<member name="M:GBase.Interfaces.IGBase.AddTable(GBase.Interfaces.IGBaseTable)"> <member name="M:GBase.Interfaces.IGBase.AddTable(GBase.Interfaces.IGBaseTable)">
<summary> <summary>
Add a given <see cref="T:GBase.Interfaces.IGBaseTable"/> to this <see cref="T:GBase.Interfaces.IGBase"/> Add a given <see cref="T:GBase.Interfaces.IGBaseTable"/> to this <see cref="T:GBase.Interfaces.IGBase"/>
</summary> </summary>
<param name="table">The given <see cref="T:GBase.Interfaces.IGBaseTable"/></param> <param name="table">The given <see cref="T:GBase.Interfaces.IGBaseTable"/></param>
<returns>True if successful, false if not</returns> <returns>True if successful, false if not</returns>
</member> </member>
<member name="M:GBase.Interfaces.IGBase.RemoveTable(GBase.Interfaces.IGBaseTable)"> <member name="M:GBase.Interfaces.IGBase.RemoveTable(GBase.Interfaces.IGBaseTable)">
<summary> <summary>
Removes a given <see cref="T:GBase.Interfaces.IGBaseTable"/> from this <see cref="T:GBase.Interfaces.IGBase"/> Removes a given <see cref="T:GBase.Interfaces.IGBaseTable"/> from this <see cref="T:GBase.Interfaces.IGBase"/>
</summary> </summary>
<param name="table">The given <see cref="T:GBase.Interfaces.IGBaseTable"/></param> <param name="table">The given <see cref="T:GBase.Interfaces.IGBaseTable"/></param>
<returns>True if successful, false if not</returns> <returns>True if successful, false if not</returns>
</member> </member>
<member name="T:GBase.Interfaces.IGBaseEntry"> <member name="T:GBase.Interfaces.IGBaseEntry">
<summary> <summary>
An entry of a <see cref="T:GBase.Interfaces.IGBaseTable"/> An entry of a <see cref="T:GBase.Interfaces.IGBaseTable"/>
</summary> </summary>
</member> </member>
<member name="T:GBase.Interfaces.IGBaseTable"> <member name="T:GBase.Interfaces.IGBaseTable">
<summary> <summary>
A <see cref="T:GBase.Interfaces.IGBase"/> table A <see cref="T:GBase.Interfaces.IGBase"/> table
</summary> </summary>
</member> </member>
<member name="P:GBase.Interfaces.IGBaseTable.Type"> <member name="P:GBase.Interfaces.IGBaseTable.Type">
<summary> <summary>
The <see cref="T:System.Type"/> of the class that this <see cref="T:GBase.Interfaces.IGBaseTable"/> represents The <see cref="T:System.Type"/> of the class that this <see cref="T:GBase.Interfaces.IGBaseTable"/> represents
</summary> </summary>
</member> </member>
<member name="P:GBase.Interfaces.IGBaseTable.Name"> <member name="P:GBase.Interfaces.IGBaseTable.Name">
<summary> <summary>
The name of this <see cref="T:GBase.Interfaces.IGBaseTable"/> The name of this <see cref="T:GBase.Interfaces.IGBaseTable"/>
</summary> </summary>
</member> </member>
<member name="P:GBase.Interfaces.IGBaseTable.Entries"> <member name="P:GBase.Interfaces.IGBaseTable.Entries">
<summary> <summary>
The <see cref="T:GBase.Interfaces.IGBaseEntry"/>s of this <see cref="T:GBase.Interfaces.IGBaseTable"/> The <see cref="T:GBase.Interfaces.IGBaseEntry"/>s of this <see cref="T:GBase.Interfaces.IGBaseTable"/>
</summary> </summary>
</member> </member>
<member name="M:GBase.Interfaces.IGBaseTable.Init(System.Type,System.String,System.Threading.CancellationToken)"> <member name="M:GBase.Interfaces.IGBaseTable.Init(System.Type,System.String,System.Threading.CancellationToken)">
<summary> <summary>
Initialize this <see cref="T:GBase.Interfaces.IGBase"/> Initialize this <see cref="T:GBase.Interfaces.IGBase"/>
</summary> </summary>
<param name="type">The <see cref="T:System.Type"/> of the class that this <see cref="T:GBase.Interfaces.IGBaseTable"/> represents</param> <param name="type">The <see cref="T:System.Type"/> of the class that this <see cref="T:GBase.Interfaces.IGBaseTable"/> represents</param>
<param name="name">The name of this <see cref="T:GBase.Interfaces.IGBaseTable"/></param> <param name="name">The name of this <see cref="T:GBase.Interfaces.IGBaseTable"/></param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken"/> to cancel the asynchronous operation</param> <param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken"/> to cancel the asynchronous operation</param>
<returns>True if successful, false if not</returns> <returns>True if successful, false if not</returns>
</member> </member>
<member name="T:GBase.Interfaces.Settings.IGBaseSettings"> <member name="T:GBase.Interfaces.Settings.IGBaseSettings">
<summary> <summary>
Settings of a <see cref="T:GBase.Interfaces.IGBase"/> instance Settings of a <see cref="T:GBase.Interfaces.IGBase"/> instance
</summary> </summary>
</member> </member>
</members> </members>
</doc> </doc>

Loading…
Cancel
Save