diff --git a/Client.sln b/Client.sln index d96a9e3..c54db6d 100644 --- a/Client.sln +++ b/Client.sln @@ -1,9 +1,14 @@  Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 15 -VisualStudioVersion = 15.0.27703.2018 +VisualStudioVersion = 15.0.27428.2027 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Client", "Client\Client.csproj", "{7467FD6B-4743-4436-A87B-095EA46C476F}" + ProjectSection(ProjectDependencies) = postProject + {78D3B3D9-5CEC-42D5-B3D1-C480E688FDE1} = {78D3B3D9-5CEC-42D5-B3D1-C480E688FDE1} + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ServerWebApplication", "ServerWebApplication\ServerWebApplication\ServerWebApplication.csproj", "{78D3B3D9-5CEC-42D5-B3D1-C480E688FDE1}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -15,11 +20,15 @@ Global {7467FD6B-4743-4436-A87B-095EA46C476F}.Debug|Any CPU.Build.0 = Debug|Any CPU {7467FD6B-4743-4436-A87B-095EA46C476F}.Release|Any CPU.ActiveCfg = Release|Any CPU {7467FD6B-4743-4436-A87B-095EA46C476F}.Release|Any CPU.Build.0 = Release|Any CPU + {78D3B3D9-5CEC-42D5-B3D1-C480E688FDE1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {78D3B3D9-5CEC-42D5-B3D1-C480E688FDE1}.Debug|Any CPU.Build.0 = Debug|Any CPU + {78D3B3D9-5CEC-42D5-B3D1-C480E688FDE1}.Release|Any CPU.ActiveCfg = Release|Any CPU + {78D3B3D9-5CEC-42D5-B3D1-C480E688FDE1}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {6409E652-D47B-4598-AA8B-BC543DCA647C} + SolutionGuid = {BC7FC314-8898-4C47-A506-72C37C97B0E5} EndGlobalSection EndGlobal diff --git a/Client/App.config b/Client/App.config index 731f6de..ee1ef04 100644 --- a/Client/App.config +++ b/Client/App.config @@ -1,6 +1,41 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Client/Client.csproj b/Client/Client.csproj index caa30ff..fc0015c 100644 --- a/Client/Client.csproj +++ b/Client/Client.csproj @@ -36,6 +36,8 @@ + + @@ -80,6 +82,11 @@ App.xaml Code + + True + True + Reference.svcmap + MainWindow.xaml Code @@ -103,6 +110,10 @@ ResXFileCodeGenerator Resources.Designer.cs + + + Designer + SettingsSingleFileGenerator @@ -112,5 +123,26 @@ + + + + + + + + + + + + + + + + + + WCF Proxy Generator + Reference.cs + + \ No newline at end of file diff --git a/Client/Connected Services/ServiceReference1/Reference.cs b/Client/Connected Services/ServiceReference1/Reference.cs new file mode 100644 index 0000000..3e283d6 --- /dev/null +++ b/Client/Connected Services/ServiceReference1/Reference.cs @@ -0,0 +1,60 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Client.ServiceReference1 { + + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ServiceModel.ServiceContractAttribute(ConfigurationName="ServiceReference1.IServerService")] + public interface IServerService { + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IServerService/DoWork", ReplyAction="http://tempuri.org/IServerService/DoWorkResponse")] + void DoWork(); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IServerService/DoWork", ReplyAction="http://tempuri.org/IServerService/DoWorkResponse")] + System.Threading.Tasks.Task DoWorkAsync(); + } + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + public interface IServerServiceChannel : Client.ServiceReference1.IServerService, System.ServiceModel.IClientChannel { + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + public partial class ServerServiceClient : System.ServiceModel.ClientBase, Client.ServiceReference1.IServerService { + + public ServerServiceClient() { + } + + public ServerServiceClient(string endpointConfigurationName) : + base(endpointConfigurationName) { + } + + public ServerServiceClient(string endpointConfigurationName, string remoteAddress) : + base(endpointConfigurationName, remoteAddress) { + } + + public ServerServiceClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : + base(endpointConfigurationName, remoteAddress) { + } + + public ServerServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : + base(binding, remoteAddress) { + } + + public void DoWork() { + base.Channel.DoWork(); + } + + public System.Threading.Tasks.Task DoWorkAsync() { + return base.Channel.DoWorkAsync(); + } + } +} diff --git a/Client/Connected Services/ServiceReference1/Reference.svcmap b/Client/Connected Services/ServiceReference1/Reference.svcmap new file mode 100644 index 0000000..ea5671a --- /dev/null +++ b/Client/Connected Services/ServiceReference1/Reference.svcmap @@ -0,0 +1,33 @@ + + + + false + true + true + + false + false + false + + + true + Auto + true + true + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Client/Connected Services/ServiceReference1/ServerService.disco b/Client/Connected Services/ServiceReference1/ServerService.disco new file mode 100644 index 0000000..1b03d49 --- /dev/null +++ b/Client/Connected Services/ServiceReference1/ServerService.disco @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Client/Connected Services/ServiceReference1/ServerService.wsdl b/Client/Connected Services/ServiceReference1/ServerService.wsdl new file mode 100644 index 0000000..ff4f9fe --- /dev/null +++ b/Client/Connected Services/ServiceReference1/ServerService.wsdl @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Client/Connected Services/ServiceReference1/ServerService.xsd b/Client/Connected Services/ServiceReference1/ServerService.xsd new file mode 100644 index 0000000..29c2076 --- /dev/null +++ b/Client/Connected Services/ServiceReference1/ServerService.xsd @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/Client/Connected Services/ServiceReference1/configuration.svcinfo b/Client/Connected Services/ServiceReference1/configuration.svcinfo new file mode 100644 index 0000000..8d778e0 --- /dev/null +++ b/Client/Connected Services/ServiceReference1/configuration.svcinfo @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/Client/Connected Services/ServiceReference1/configuration91.svcinfo b/Client/Connected Services/ServiceReference1/configuration91.svcinfo new file mode 100644 index 0000000..5e3bf21 --- /dev/null +++ b/Client/Connected Services/ServiceReference1/configuration91.svcinfo @@ -0,0 +1,201 @@ + + + + + + + BasicHttpBinding_IServerService + + + + + + + + + + + + + + + + + + + + + StrongWildcard + + + + + + 65536 + + + + + + + + + System.ServiceModel.Configuration.XmlDictionaryReaderQuotasElement + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + System.Text.UTF8Encoding + + + Buffered + + + + + + Text + + + System.ServiceModel.Configuration.BasicHttpSecurityElement + + + None + + + System.ServiceModel.Configuration.HttpTransportSecurityElement + + + None + + + None + + + System.Security.Authentication.ExtendedProtection.Configuration.ExtendedProtectionPolicyElement + + + Never + + + TransportSelected + + + (Collection) + + + + + + System.ServiceModel.Configuration.BasicHttpMessageSecurityElement + + + UserName + + + Default + + + + + + + + + http://localhost:58304/ServerService.svc + + + + + + basicHttpBinding + + + BasicHttpBinding_IServerService + + + ServiceReference1.IServerService + + + System.ServiceModel.Configuration.AddressHeaderCollectionElement + + + <Header /> + + + System.ServiceModel.Configuration.IdentityElement + + + System.ServiceModel.Configuration.UserPrincipalNameElement + + + + + + System.ServiceModel.Configuration.ServicePrincipalNameElement + + + + + + System.ServiceModel.Configuration.DnsElement + + + + + + System.ServiceModel.Configuration.RsaElement + + + + + + System.ServiceModel.Configuration.CertificateElement + + + + + + System.ServiceModel.Configuration.CertificateReferenceElement + + + My + + + LocalMachine + + + FindBySubjectDistinguishedName + + + + + + False + + + BasicHttpBinding_IServerService + + + + + + + + + + + \ No newline at end of file diff --git a/ServerWebApplication/ServerWebApplication.sln b/ServerWebApplication/ServerWebApplication.sln new file mode 100644 index 0000000..7235cbd --- /dev/null +++ b/ServerWebApplication/ServerWebApplication.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.27428.2027 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ServerWebApplication", "ServerWebApplication\ServerWebApplication.csproj", "{78D3B3D9-5CEC-42D5-B3D1-C480E688FDE1}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {78D3B3D9-5CEC-42D5-B3D1-C480E688FDE1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {78D3B3D9-5CEC-42D5-B3D1-C480E688FDE1}.Debug|Any CPU.Build.0 = Debug|Any CPU + {78D3B3D9-5CEC-42D5-B3D1-C480E688FDE1}.Release|Any CPU.ActiveCfg = Release|Any CPU + {78D3B3D9-5CEC-42D5-B3D1-C480E688FDE1}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {BC7FC314-8898-4C47-A506-72C37C97B0E5} + EndGlobalSection +EndGlobal diff --git a/ServerWebApplication/ServerWebApplication/DBModel.cs b/ServerWebApplication/ServerWebApplication/DBModel.cs new file mode 100644 index 0000000..60c76e2 --- /dev/null +++ b/ServerWebApplication/ServerWebApplication/DBModel.cs @@ -0,0 +1,31 @@ +namespace ServerWebApplication +{ + using System; + using System.Data.Entity; + using System.Linq; + + public class DBModel : DbContext + { + // Your context has been configured to use a 'DBModel' connection string from your application's + // configuration file (App.config or Web.config). By default, this connection string targets the + // 'ServerWebApplication.DBModel' database on your LocalDb instance. + // + // If you wish to target a different database and/or database provider, modify the 'DBModel' + // connection string in the application configuration file. + public DBModel() + : base("name=DBModel") + { + } + + // Add a DbSet for each entity type that you want to include in your model. For more information + // on configuring and using a Code First model, see http://go.microsoft.com/fwlink/?LinkId=390109. + + // public virtual DbSet MyEntities { get; set; } + } + + //public class MyEntity + //{ + // public int Id { get; set; } + // public string Name { get; set; } + //} +} \ No newline at end of file diff --git a/ServerWebApplication/ServerWebApplication/Global.asax b/ServerWebApplication/ServerWebApplication/Global.asax new file mode 100644 index 0000000..865ef0e --- /dev/null +++ b/ServerWebApplication/ServerWebApplication/Global.asax @@ -0,0 +1 @@ +<%@ Application Codebehind="Global.asax.cs" Inherits="ServerWebApplication.Global" Language="C#" %> diff --git a/ServerWebApplication/ServerWebApplication/Global.asax.cs b/ServerWebApplication/ServerWebApplication/Global.asax.cs new file mode 100644 index 0000000..5b61692 --- /dev/null +++ b/ServerWebApplication/ServerWebApplication/Global.asax.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.Security; +using System.Web.SessionState; + +namespace ServerWebApplication +{ + public class Global : System.Web.HttpApplication + { + protected void Application_Start(object sender, EventArgs e) + { + } + } +} \ No newline at end of file diff --git a/ServerWebApplication/ServerWebApplication/IServerService.cs b/ServerWebApplication/ServerWebApplication/IServerService.cs new file mode 100644 index 0000000..99337aa --- /dev/null +++ b/ServerWebApplication/ServerWebApplication/IServerService.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Runtime.Serialization; +using System.ServiceModel; +using System.Text; + +namespace ServerWebApplication +{ + // NOTE: You can use the "Rename" command on the "Refactor" menu to change the interface name "IServerService" in both code and config file together. + [ServiceContract] + public interface IServerService + { + [OperationContract] + void DoWork(); + } +} diff --git a/ServerWebApplication/ServerWebApplication/IService.cs b/ServerWebApplication/ServerWebApplication/IService.cs new file mode 100644 index 0000000..aced32c --- /dev/null +++ b/ServerWebApplication/ServerWebApplication/IService.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Runtime.Serialization; +using System.ServiceModel; +using System.Text; + +namespace ServerWebApplication +{ + // NOTE: You can use the "Rename" command on the "Refactor" menu to change the interface name "IService" in both code and config file together. + [ServiceContract] + public interface IService + { + [OperationContract] + void DoWork(); + } +} diff --git a/ServerWebApplication/ServerWebApplication/IService1.cs b/ServerWebApplication/ServerWebApplication/IService1.cs new file mode 100644 index 0000000..b1b8cd4 --- /dev/null +++ b/ServerWebApplication/ServerWebApplication/IService1.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Runtime.Serialization; +using System.ServiceModel; +using System.Text; + +namespace ServerWebApplication +{ + // NOTE: You can use the "Rename" command on the "Refactor" menu to change the interface name "IService1" in both code and config file together. + [ServiceContract] + public interface IService1 + { + [OperationContract] + void DoWork(); + } +} diff --git a/ServerWebApplication/ServerWebApplication/Properties/AssemblyInfo.cs b/ServerWebApplication/ServerWebApplication/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..f0edc07 --- /dev/null +++ b/ServerWebApplication/ServerWebApplication/Properties/AssemblyInfo.cs @@ -0,0 +1,35 @@ +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("ServerWebApplication")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("ServerWebApplication")] +[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("78d3b3d9-5cec-42d5-b3d1-c480e688fde1")] + +// 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 Revision and Build Numbers +// by using the '*' as shown below: +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/ServerWebApplication/ServerWebApplication/ServerService.svc b/ServerWebApplication/ServerWebApplication/ServerService.svc new file mode 100644 index 0000000..647ee90 --- /dev/null +++ b/ServerWebApplication/ServerWebApplication/ServerService.svc @@ -0,0 +1 @@ +<%@ ServiceHost Language="C#" Debug="true" Service="ServerWebApplication.ServerService" CodeBehind="ServerService.svc.cs" %> diff --git a/ServerWebApplication/ServerWebApplication/ServerService.svc.cs b/ServerWebApplication/ServerWebApplication/ServerService.svc.cs new file mode 100644 index 0000000..b9d3e05 --- /dev/null +++ b/ServerWebApplication/ServerWebApplication/ServerService.svc.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Runtime.Serialization; +using System.ServiceModel; +using System.Text; + +namespace ServerWebApplication +{ + // NOTE: You can use the "Rename" command on the "Refactor" menu to change the class name "ServerService" in code, svc and config file together. + // NOTE: In order to launch WCF Test Client for testing this service, please select ServerService.svc or ServerService.svc.cs at the Solution Explorer and start debugging. + public class ServerService : IServerService + { + public void DoWork() + { + } + } +} diff --git a/ServerWebApplication/ServerWebApplication/ServerWebApplication.csproj b/ServerWebApplication/ServerWebApplication/ServerWebApplication.csproj new file mode 100644 index 0000000..10b4cd0 --- /dev/null +++ b/ServerWebApplication/ServerWebApplication/ServerWebApplication.csproj @@ -0,0 +1,146 @@ + + + + + + Debug + AnyCPU + + + 2.0 + {78D3B3D9-5CEC-42D5-B3D1-C480E688FDE1} + {349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc} + Library + Properties + ServerWebApplication + ServerWebApplication + v4.6.1 + true + + + + + + + + + True + + + true + full + false + bin\ + DEBUG;TRACE + prompt + 4 + + + true + pdbonly + true + bin\ + TRACE + prompt + 4 + + + + ..\packages\EntityFramework.6.1.3\lib\net45\EntityFramework.dll + + + ..\packages\EntityFramework.6.1.3\lib\net45\EntityFramework.SqlServer.dll + + + ..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.8\lib\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll + + + + + + + + + + + + + + + + + + + + + + + + + + Web.config + + + Web.config + + + + + + + + + + + Global.asax + + + + + ServerService.svc + + + + + + + + 10.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + + + + + + True + True + 58304 + / + http://localhost:58304/ + False + False + + + False + + + + + + + This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. + + + + + + \ No newline at end of file diff --git a/ServerWebApplication/ServerWebApplication/Service.svc b/ServerWebApplication/ServerWebApplication/Service.svc new file mode 100644 index 0000000..2616583 --- /dev/null +++ b/ServerWebApplication/ServerWebApplication/Service.svc @@ -0,0 +1 @@ +<%@ ServiceHost Language="C#" Debug="true" Service="ServerWebApplication.Service" CodeBehind="Service.svc.cs" %> diff --git a/ServerWebApplication/ServerWebApplication/Service.svc.cs b/ServerWebApplication/ServerWebApplication/Service.svc.cs new file mode 100644 index 0000000..f68afc8 --- /dev/null +++ b/ServerWebApplication/ServerWebApplication/Service.svc.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Runtime.Serialization; +using System.ServiceModel; +using System.Text; + +namespace ServerWebApplication +{ + // NOTE: You can use the "Rename" command on the "Refactor" menu to change the class name "Service" in code, svc and config file together. + // NOTE: In order to launch WCF Test Client for testing this service, please select Service.svc or Service.svc.cs at the Solution Explorer and start debugging. + public class Service : IService + { + public void DoWork() + { + } + } +} diff --git a/ServerWebApplication/ServerWebApplication/Service1.svc b/ServerWebApplication/ServerWebApplication/Service1.svc new file mode 100644 index 0000000..0e83615 --- /dev/null +++ b/ServerWebApplication/ServerWebApplication/Service1.svc @@ -0,0 +1 @@ +<%@ ServiceHost Language="C#" Debug="true" Service="ServerWebApplication.Service1" CodeBehind="Service1.svc.cs" %> diff --git a/ServerWebApplication/ServerWebApplication/Service1.svc.cs b/ServerWebApplication/ServerWebApplication/Service1.svc.cs new file mode 100644 index 0000000..5dabd29 --- /dev/null +++ b/ServerWebApplication/ServerWebApplication/Service1.svc.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Runtime.Serialization; +using System.ServiceModel; +using System.Text; + +namespace ServerWebApplication +{ + // NOTE: You can use the "Rename" command on the "Refactor" menu to change the class name "Service1" in code, svc and config file together. + // NOTE: In order to launch WCF Test Client for testing this service, please select Service1.svc or Service1.svc.cs at the Solution Explorer and start debugging. + public class Service1 : IService1 + { + public void DoWork() + { + } + } +} diff --git a/ServerWebApplication/ServerWebApplication/Web.Debug.config b/ServerWebApplication/ServerWebApplication/Web.Debug.config new file mode 100644 index 0000000..fae9cfe --- /dev/null +++ b/ServerWebApplication/ServerWebApplication/Web.Debug.config @@ -0,0 +1,30 @@ + + + + + + + + + + \ No newline at end of file diff --git a/ServerWebApplication/ServerWebApplication/Web.Release.config b/ServerWebApplication/ServerWebApplication/Web.Release.config new file mode 100644 index 0000000..da6e960 --- /dev/null +++ b/ServerWebApplication/ServerWebApplication/Web.Release.config @@ -0,0 +1,31 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/ServerWebApplication/ServerWebApplication/Web.config b/ServerWebApplication/ServerWebApplication/Web.config new file mode 100644 index 0000000..33bcffd --- /dev/null +++ b/ServerWebApplication/ServerWebApplication/Web.config @@ -0,0 +1,46 @@ + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/ServerWebApplication/ServerWebApplication/packages.config b/ServerWebApplication/ServerWebApplication/packages.config new file mode 100644 index 0000000..243fd05 --- /dev/null +++ b/ServerWebApplication/ServerWebApplication/packages.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file