Fixed one part of the oof
This commit is contained in:
6
SysEx.Net.Tests/App.config
Normal file
6
SysEx.Net.Tests/App.config
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<configuration>
|
||||||
|
<startup>
|
||||||
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
||||||
|
</startup>
|
||||||
|
</configuration>
|
||||||
34
SysEx.Net.Tests/Program.cs
Normal file
34
SysEx.Net.Tests/Program.cs
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using SysEx.Net;
|
||||||
|
|
||||||
|
namespace SysEx.Net.Tests
|
||||||
|
{
|
||||||
|
class Program
|
||||||
|
{
|
||||||
|
static void Main(string[] args) => MainTask().GetAwaiter().GetResult();
|
||||||
|
|
||||||
|
static async Task MainTask()
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var client = new SysExClient();
|
||||||
|
|
||||||
|
var resp = await client.GetWeebActionGifAsync(GifType.Slap);
|
||||||
|
|
||||||
|
Console.WriteLine(resp);
|
||||||
|
|
||||||
|
Console.ReadLine();
|
||||||
|
}
|
||||||
|
catch(Exception ex)
|
||||||
|
{
|
||||||
|
Console.WriteLine(ex);
|
||||||
|
}
|
||||||
|
|
||||||
|
await Task.Delay(-1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
36
SysEx.Net.Tests/Properties/AssemblyInfo.cs
Normal file
36
SysEx.Net.Tests/Properties/AssemblyInfo.cs
Normal file
@@ -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("SysEx.Net.Tests")]
|
||||||
|
[assembly: AssemblyDescription("")]
|
||||||
|
[assembly: AssemblyConfiguration("")]
|
||||||
|
[assembly: AssemblyCompany("")]
|
||||||
|
[assembly: AssemblyProduct("SysEx.Net.Tests")]
|
||||||
|
[assembly: AssemblyCopyright("Copyright © 2018")]
|
||||||
|
[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("3d2b5880-e443-4902-97ea-1bd052d68305")]
|
||||||
|
|
||||||
|
// 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")]
|
||||||
58
SysEx.Net.Tests/SysEx.Net.Tests.csproj
Normal file
58
SysEx.Net.Tests/SysEx.Net.Tests.csproj
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
<?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>{3D2B5880-E443-4902-97EA-1BD052D68305}</ProjectGuid>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<RootNamespace>SysEx.Net.Tests</RootNamespace>
|
||||||
|
<AssemblyName>SysEx.Net.Tests</AssemblyName>
|
||||||
|
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
|
||||||
|
<FileAlignment>512</FileAlignment>
|
||||||
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
|
<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' ">
|
||||||
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
|
<DebugType>pdbonly</DebugType>
|
||||||
|
<Optimize>true</Optimize>
|
||||||
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<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="Program.cs" />
|
||||||
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="App.config" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\SysEx.Net\SysEx.Net.csproj">
|
||||||
|
<Project>{2c847b95-0feb-4323-962f-e21d3e879383}</Project>
|
||||||
|
<Name>SysEx.Net</Name>
|
||||||
|
</ProjectReference>
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
|
</Project>
|
||||||
@@ -3,7 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
|
|||||||
# Visual Studio 15
|
# Visual Studio 15
|
||||||
VisualStudioVersion = 15.0.27428.2043
|
VisualStudioVersion = 15.0.27428.2043
|
||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SysEx.Net", "SysEx.Net\SysEx.Net.csproj", "{2C847B95-0FEB-4323-962F-E21D3E879383}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SysEx.Net", "SysEx.Net\SysEx.Net.csproj", "{2C847B95-0FEB-4323-962F-E21D3E879383}"
|
||||||
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SysEx.Net.Tests", "SysEx.Net.Tests\SysEx.Net.Tests.csproj", "{3D2B5880-E443-4902-97EA-1BD052D68305}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
@@ -15,6 +17,10 @@ Global
|
|||||||
{2C847B95-0FEB-4323-962F-E21D3E879383}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{2C847B95-0FEB-4323-962F-E21D3E879383}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{2C847B95-0FEB-4323-962F-E21D3E879383}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{2C847B95-0FEB-4323-962F-E21D3E879383}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{2C847B95-0FEB-4323-962F-E21D3E879383}.Release|Any CPU.Build.0 = Release|Any CPU
|
{2C847B95-0FEB-4323-962F-E21D3E879383}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{3D2B5880-E443-4902-97EA-1BD052D68305}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{3D2B5880-E443-4902-97EA-1BD052D68305}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{3D2B5880-E443-4902-97EA-1BD052D68305}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{3D2B5880-E443-4902-97EA-1BD052D68305}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
|
|||||||
@@ -52,16 +52,7 @@ namespace SysEx.Net
|
|||||||
var client = CreateWebRequest(url);
|
var client = CreateWebRequest(url);
|
||||||
|
|
||||||
var resp = (HttpWebResponse)(await client.GetResponseAsync());
|
var resp = (HttpWebResponse)(await client.GetResponseAsync());
|
||||||
if (resp.StatusCode == (HttpStatusCode.OK | HttpStatusCode.Redirect))
|
return resp.ResponseUri ?? null;
|
||||||
{
|
|
||||||
var uri = resp.ResponseUri;
|
|
||||||
resp.Dispose();
|
|
||||||
client.Abort();
|
|
||||||
return uri;
|
|
||||||
}
|
|
||||||
resp.Dispose();
|
|
||||||
client.Abort();
|
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
catch
|
catch
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user