lucidiot/NullSharp
lucidiot
/
NullSharp
Archived
1
0
Fork 0

Add project

This commit is contained in:
Lucidiot 2019-04-08 00:57:39 +02:00
parent b10b2a3bb8
commit 41cd8d8623
No known key found for this signature in database
GPG Key ID: AE3F7205692FA205
2 changed files with 55 additions and 0 deletions

34
NullSharp.sln Normal file
View File

@ -0,0 +1,34 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26124.0
MinimumVisualStudioVersion = 15.0.26124.0
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NullSharp", "NullSharp\NullSharp.csproj", "{573D3111-7187-42BE-912E-4147706E8829}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{573D3111-7187-42BE-912E-4147706E8829}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{573D3111-7187-42BE-912E-4147706E8829}.Debug|Any CPU.Build.0 = Debug|Any CPU
{573D3111-7187-42BE-912E-4147706E8829}.Debug|x64.ActiveCfg = Debug|Any CPU
{573D3111-7187-42BE-912E-4147706E8829}.Debug|x64.Build.0 = Debug|Any CPU
{573D3111-7187-42BE-912E-4147706E8829}.Debug|x86.ActiveCfg = Debug|Any CPU
{573D3111-7187-42BE-912E-4147706E8829}.Debug|x86.Build.0 = Debug|Any CPU
{573D3111-7187-42BE-912E-4147706E8829}.Release|Any CPU.ActiveCfg = Release|Any CPU
{573D3111-7187-42BE-912E-4147706E8829}.Release|Any CPU.Build.0 = Release|Any CPU
{573D3111-7187-42BE-912E-4147706E8829}.Release|x64.ActiveCfg = Release|Any CPU
{573D3111-7187-42BE-912E-4147706E8829}.Release|x64.Build.0 = Release|Any CPU
{573D3111-7187-42BE-912E-4147706E8829}.Release|x86.ActiveCfg = Release|Any CPU
{573D3111-7187-42BE-912E-4147706E8829}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal

View File

@ -0,0 +1,21 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<OutputType>Library</OutputType>
<AssemblyName>NullSharp</AssemblyName>
<PackageId>NullSharp</PackageId>
<VersionPrefix>1.0.0</VersionPrefix>
<Authors>Lucidiot</Authors>
<Company>Lucidiot</Company>
<Description>API client for /dev/null As A Service.</Description>
<PackageLicenseUrl>https://gitlab.com/Lucidiot/NullSharp/blob/master/LICENSE</PackageLicenseUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://gitlab.com/Lucidiot/NullSharp</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Net.Http" Version="4.3.4" />
</ItemGroup>
</Project>