diff options
| author | Alee <Alee14498@gmail.com> | 2019-05-19 10:53:35 -0400 |
|---|---|---|
| committer | Alee <Alee14498@gmail.com> | 2019-05-19 10:53:35 -0400 |
| commit | 6ed2a7cb4a2de7bc1e48f94bf68f196124756920 (patch) | |
| tree | 19f7691801d3340408d46f1a1ba3039b3c03fbb3 /QuantumNet.Backend | |
| parent | 3ccda1094bfc6f9db8031bd59e2fc10b09e853e0 (diff) | |
| download | QuantumNet-6ed2a7cb4a2de7bc1e48f94bf68f196124756920.tar.gz QuantumNet-6ed2a7cb4a2de7bc1e48f94bf68f196124756920.tar.bz2 QuantumNet-6ed2a7cb4a2de7bc1e48f94bf68f196124756920.zip | |
Add project files.
Diffstat (limited to 'QuantumNet.Backend')
| -rw-r--r-- | QuantumNet.Backend/Class1.cs | 12 | ||||
| -rw-r--r-- | QuantumNet.Backend/Properties/AssemblyInfo.cs | 36 | ||||
| -rw-r--r-- | QuantumNet.Backend/QuantumNet.Backend.csproj | 54 | ||||
| -rw-r--r-- | QuantumNet.Backend/packages.config | 4 |
4 files changed, 106 insertions, 0 deletions
diff --git a/QuantumNet.Backend/Class1.cs b/QuantumNet.Backend/Class1.cs new file mode 100644 index 0000000..24aa841 --- /dev/null +++ b/QuantumNet.Backend/Class1.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace QuantumNet.Backend +{ + public class Class1 + { + } +} diff --git a/QuantumNet.Backend/Properties/AssemblyInfo.cs b/QuantumNet.Backend/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..20f888d --- /dev/null +++ b/QuantumNet.Backend/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("QuantumNet.Backend")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("QuantumNet.Backend")] +[assembly: AssemblyCopyright("Copyright © 2019")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("08805581-b972-4e6f-97bb-b3bf3130cd08")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/QuantumNet.Backend/QuantumNet.Backend.csproj b/QuantumNet.Backend/QuantumNet.Backend.csproj new file mode 100644 index 0000000..4c903f9 --- /dev/null +++ b/QuantumNet.Backend/QuantumNet.Backend.csproj @@ -0,0 +1,54 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> + <PropertyGroup> + <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> + <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> + <ProjectGuid>{08805581-B972-4E6F-97BB-B3BF3130CD08}</ProjectGuid> + <OutputType>Library</OutputType> + <AppDesignerFolder>Properties</AppDesignerFolder> + <RootNamespace>QuantumNet.Backend</RootNamespace> + <AssemblyName>QuantumNet.Backend</AssemblyName> + <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion> + <FileAlignment>512</FileAlignment> + <Deterministic>true</Deterministic> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> + <DebugSymbols>true</DebugSymbols> + <DebugType>full</DebugType> + <Optimize>false</Optimize> + <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>DEBUG;TRACE</DefineConstants> + <ErrorReport>prompt</ErrorReport> + <WarningLevel>4</WarningLevel> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> + <DebugType>pdbonly</DebugType> + <Optimize>true</Optimize> + <OutputPath>bin\Release\</OutputPath> + <DefineConstants>TRACE</DefineConstants> + <ErrorReport>prompt</ErrorReport> + <WarningLevel>4</WarningLevel> + </PropertyGroup> + <ItemGroup> + <Reference Include="MonoGame.Framework, Version=3.7.1.189, Culture=neutral, processorArchitecture=MSIL"> + <HintPath>..\packages\MonoGame.Framework.Portable.3.7.1.189\lib\portable-net45+win8+wpa81\MonoGame.Framework.dll</HintPath> + </Reference> + <Reference Include="System" /> + <Reference Include="System.Core" /> + <Reference Include="System.Xml.Linq" /> + <Reference Include="System.Data.DataSetExtensions" /> + <Reference Include="Microsoft.CSharp" /> + <Reference Include="System.Data" /> + <Reference Include="System.Net.Http" /> + <Reference Include="System.Xml" /> + </ItemGroup> + <ItemGroup> + <Compile Include="Class1.cs" /> + <Compile Include="Properties\AssemblyInfo.cs" /> + </ItemGroup> + <ItemGroup> + <None Include="packages.config" /> + </ItemGroup> + <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> +</Project>
\ No newline at end of file diff --git a/QuantumNet.Backend/packages.config b/QuantumNet.Backend/packages.config new file mode 100644 index 0000000..bda8346 --- /dev/null +++ b/QuantumNet.Backend/packages.config @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?> +<packages> + <package id="MonoGame.Framework.Portable" version="3.7.1.189" targetFramework="net472" /> +</packages>
\ No newline at end of file |
