From 7b459c1ffe3546289ea4ef790fa5add5918a0700 Mon Sep 17 00:00:00 2001 From: sili98 <sili98@sch.bme.hu> Date: Thu, 7 May 2020 19:20:13 +0200 Subject: [PATCH] Added packages and dependencies for Microsoft.AspNet.SignalR.Core, Microsoft.AspNet.SignalR. --- zsirozas/packages.config | 9 +++++++++ zsirozas/zsirozas.csproj | 23 +++++++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 zsirozas/packages.config diff --git a/zsirozas/packages.config b/zsirozas/packages.config new file mode 100644 index 0000000..6107698 --- /dev/null +++ b/zsirozas/packages.config @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8"?> +<packages> + <package id="Microsoft.AspNet.SignalR.Client" version="2.4.1" targetFramework="net461" /> + <package id="Microsoft.AspNet.SignalR.Core" version="2.4.1" targetFramework="net461" /> + <package id="Microsoft.Owin" version="2.1.0" targetFramework="net461" /> + <package id="Microsoft.Owin.Security" version="2.1.0" targetFramework="net461" /> + <package id="Newtonsoft.Json" version="6.0.4" targetFramework="net461" /> + <package id="Owin" version="1.0" targetFramework="net461" /> +</packages> \ No newline at end of file diff --git a/zsirozas/zsirozas.csproj b/zsirozas/zsirozas.csproj index 763a1be..7badef4 100644 --- a/zsirozas/zsirozas.csproj +++ b/zsirozas/zsirozas.csproj @@ -36,6 +36,28 @@ <Reference Include="System.Web.Extensions" /> <Reference Include="System.Windows.Forms" /> <Reference Include="System.Xml" /> + <Reference Include="Newtonsoft.Json"> + <HintPath>..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath> + </Reference> + <Reference Include="Owin"> + <HintPath>..\packages\Owin.1.0\lib\net40\Owin.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Owin"> + <HintPath>..\packages\Microsoft.Owin.2.1.0\lib\net45\Microsoft.Owin.dll</HintPath> + </Reference> + <Reference Include="Microsoft.Owin.Security"> + <HintPath>..\packages\Microsoft.Owin.Security.2.1.0\lib\net45\Microsoft.Owin.Security.dll</HintPath> + </Reference> + <Reference Include="Microsoft.AspNet.SignalR.Core"> + <HintPath>..\packages\Microsoft.AspNet.SignalR.Core.2.4.1\lib\net45\Microsoft.AspNet.SignalR.Core.dll</HintPath> + </Reference> + <Reference Include="Microsoft.CSharp" /> + <Reference Include="System.Security" /> + <Reference Include="Microsoft.AspNet.SignalR.Client"> + <HintPath>..\packages\Microsoft.AspNet.SignalR.Client.2.4.1\lib\net45\Microsoft.AspNet.SignalR.Client.dll</HintPath> + </Reference> + <Reference Include="System.Net.Http" /> + <Reference Include="System.Net.Http.WebRequest" /> </ItemGroup> <ItemGroup> <Compile Include="Form1.cs"> @@ -66,6 +88,7 @@ <ItemGroup> <None Include="app.config" /> <None Include="ClassDiagram1.cd" /> + <None Include="packages.config" /> </ItemGroup> <ItemGroup> <EmbeddedResource Include="Form1.resx"> -- GitLab