From e07c09e48fbace67176a0313aa03299c0a1f0719 Mon Sep 17 00:00:00 2001 From: Arti Zirk Date: Mon, 12 Jun 2017 11:13:14 +0300 Subject: [PATCH] Add project files. --- Foorum.sln | 22 ++++++ Foorum/Foorum.csproj | 121 ++++++++++++++++++++++++++++++ Foorum/Properties/AssemblyInfo.cs | 35 +++++++++ Foorum/Web.Debug.config | 30 ++++++++ Foorum/Web.Release.config | 31 ++++++++ Foorum/Web.config | 21 ++++++ Foorum/packages.config | 5 ++ 7 files changed, 265 insertions(+) create mode 100644 Foorum.sln create mode 100644 Foorum/Foorum.csproj create mode 100644 Foorum/Properties/AssemblyInfo.cs create mode 100644 Foorum/Web.Debug.config create mode 100644 Foorum/Web.Release.config create mode 100644 Foorum/Web.config create mode 100644 Foorum/packages.config diff --git a/Foorum.sln b/Foorum.sln new file mode 100644 index 0000000..ad7ba43 --- /dev/null +++ b/Foorum.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.26510.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Foorum", "Foorum\Foorum.csproj", "{D4668470-A7AB-4F03-912A-BE9187967E36}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D4668470-A7AB-4F03-912A-BE9187967E36}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D4668470-A7AB-4F03-912A-BE9187967E36}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D4668470-A7AB-4F03-912A-BE9187967E36}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D4668470-A7AB-4F03-912A-BE9187967E36}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/Foorum/Foorum.csproj b/Foorum/Foorum.csproj new file mode 100644 index 0000000..a1ef45f --- /dev/null +++ b/Foorum/Foorum.csproj @@ -0,0 +1,121 @@ + + + + + + Debug + AnyCPU + + + 2.0 + {D4668470-A7AB-4F03-912A-BE9187967E36} + {349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc} + Library + Properties + Foorum + Foorum + v4.6.1 + true + + + + + + + + + + true + full + false + bin\ + DEBUG;TRACE + prompt + 4 + + + true + pdbonly + true + bin\ + TRACE + prompt + 4 + + + + ..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3\lib\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll + + + + + + + + + + + + + + + + + + + + + + + Web.config + + + Web.config + + + + + + + + + + 10.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + + + + + + True + True + 1721 + / + http://localhost:1721/ + 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/Foorum/Properties/AssemblyInfo.cs b/Foorum/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..280d8dd --- /dev/null +++ b/Foorum/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("Foorum")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Foorum")] +[assembly: AssemblyCopyright("Copyright © 2017")] +[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("d4668470-a7ab-4f03-912a-be9187967e36")] + +// 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/Foorum/Web.Debug.config b/Foorum/Web.Debug.config new file mode 100644 index 0000000..fae9cfe --- /dev/null +++ b/Foorum/Web.Debug.config @@ -0,0 +1,30 @@ + + + + + + + + + + \ No newline at end of file diff --git a/Foorum/Web.Release.config b/Foorum/Web.Release.config new file mode 100644 index 0000000..da6e960 --- /dev/null +++ b/Foorum/Web.Release.config @@ -0,0 +1,31 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/Foorum/Web.config b/Foorum/Web.config new file mode 100644 index 0000000..66103e0 --- /dev/null +++ b/Foorum/Web.config @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Foorum/packages.config b/Foorum/packages.config new file mode 100644 index 0000000..1c612a2 --- /dev/null +++ b/Foorum/packages.config @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file