From 93108073e6b1b3984c1e7e835477779645bd4d62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halil=20=C4=B0brahim=20Kalkan?= Date: Sun, 11 Dec 2016 00:23:17 +0300 Subject: [PATCH] Created a console app. --- Volo.Abp.sln | 7 +++++++ .../AbpDesk.ConsoleDemo.xproj | 21 +++++++++++++++++++ src/AbpDesk/AbpDesk.ConsoleDemo/Program.cs | 13 ++++++++++++ .../Properties/AssemblyInfo.cs | 19 +++++++++++++++++ src/AbpDesk/AbpDesk.ConsoleDemo/project.json | 19 +++++++++++++++++ 5 files changed, 79 insertions(+) create mode 100644 src/AbpDesk/AbpDesk.ConsoleDemo/AbpDesk.ConsoleDemo.xproj create mode 100644 src/AbpDesk/AbpDesk.ConsoleDemo/Program.cs create mode 100644 src/AbpDesk/AbpDesk.ConsoleDemo/Properties/AssemblyInfo.cs create mode 100644 src/AbpDesk/AbpDesk.ConsoleDemo/project.json diff --git a/Volo.Abp.sln b/Volo.Abp.sln index ad408715da..ca06443640 100644 --- a/Volo.Abp.sln +++ b/Volo.Abp.sln @@ -62,6 +62,8 @@ Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "AbpDesk.Application", "src\ EndProject Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "AbpDesk.EntityFrameworkCore", "src\AbpDesk\AbpDesk.EntityFrameworkCore\AbpDesk.EntityFrameworkCore.xproj", "{35624E7C-6501-4B42-9AA7-70555666A8B3}" EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "AbpDesk.ConsoleDemo", "src\AbpDesk\AbpDesk.ConsoleDemo\AbpDesk.ConsoleDemo.xproj", "{1A1575D7-E57E-4A40-8113-FD01BB1753D5}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -148,6 +150,10 @@ Global {35624E7C-6501-4B42-9AA7-70555666A8B3}.Debug|Any CPU.Build.0 = Debug|Any CPU {35624E7C-6501-4B42-9AA7-70555666A8B3}.Release|Any CPU.ActiveCfg = Release|Any CPU {35624E7C-6501-4B42-9AA7-70555666A8B3}.Release|Any CPU.Build.0 = Release|Any CPU + {1A1575D7-E57E-4A40-8113-FD01BB1753D5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1A1575D7-E57E-4A40-8113-FD01BB1753D5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1A1575D7-E57E-4A40-8113-FD01BB1753D5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1A1575D7-E57E-4A40-8113-FD01BB1753D5}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -178,5 +184,6 @@ Global {E45B2BA3-7917-4236-99CD-B0A25285A652} = {1187F469-0063-4065-9419-A1D956C80145} {B6E622CE-0AEE-45DA-81AB-C244196CB583} = {1187F469-0063-4065-9419-A1D956C80145} {35624E7C-6501-4B42-9AA7-70555666A8B3} = {1187F469-0063-4065-9419-A1D956C80145} + {1A1575D7-E57E-4A40-8113-FD01BB1753D5} = {1187F469-0063-4065-9419-A1D956C80145} EndGlobalSection EndGlobal diff --git a/src/AbpDesk/AbpDesk.ConsoleDemo/AbpDesk.ConsoleDemo.xproj b/src/AbpDesk/AbpDesk.ConsoleDemo/AbpDesk.ConsoleDemo.xproj new file mode 100644 index 0000000000..e17fd233e4 --- /dev/null +++ b/src/AbpDesk/AbpDesk.ConsoleDemo/AbpDesk.ConsoleDemo.xproj @@ -0,0 +1,21 @@ + + + + 14.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + + 1a1575d7-e57e-4a40-8113-fd01bb1753d5 + AbpDesk.ConsoleDemo + .\obj + .\bin\ + v4.6.1 + + + + 2.0 + + + diff --git a/src/AbpDesk/AbpDesk.ConsoleDemo/Program.cs b/src/AbpDesk/AbpDesk.ConsoleDemo/Program.cs new file mode 100644 index 0000000000..be1d9460b1 --- /dev/null +++ b/src/AbpDesk/AbpDesk.ConsoleDemo/Program.cs @@ -0,0 +1,13 @@ +using System; + +namespace AbpDesk.ConsoleDemo +{ + public class Program + { + public static void Main(string[] args) + { + + Console.ReadLine(); + } + } +} diff --git a/src/AbpDesk/AbpDesk.ConsoleDemo/Properties/AssemblyInfo.cs b/src/AbpDesk/AbpDesk.ConsoleDemo/Properties/AssemblyInfo.cs new file mode 100644 index 0000000000..9ce4bf415f --- /dev/null +++ b/src/AbpDesk/AbpDesk.ConsoleDemo/Properties/AssemblyInfo.cs @@ -0,0 +1,19 @@ +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: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("AbpDesk.ConsoleDemo")] +[assembly: AssemblyTrademark("")] + +// 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("1a1575d7-e57e-4a40-8113-fd01bb1753d5")] diff --git a/src/AbpDesk/AbpDesk.ConsoleDemo/project.json b/src/AbpDesk/AbpDesk.ConsoleDemo/project.json new file mode 100644 index 0000000000..dff934e8b4 --- /dev/null +++ b/src/AbpDesk/AbpDesk.ConsoleDemo/project.json @@ -0,0 +1,19 @@ +{ + "version": "1.0.0-*", + "buildOptions": { + "emitEntryPoint": true + }, + + "dependencies": { + "Microsoft.NETCore.App": { + "type": "platform", + "version": "1.1.0" + } + }, + + "frameworks": { + "netcoreapp1.1": { + "imports": "dnxcore50" + } + } +}