Created solution and empty console app project.

This commit is contained in:
Gerardo Melendrez 2018-05-12 16:03:34 -07:00
Родитель 6d0065bff3
Коммит c95b7b7ac8
3 изменённых файлов: 44 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27428.2037
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AppVNext.Notifier", "AppVNext.Notifier\AppVNext.Notifier.csproj", "{445CF2C3-079F-4A46-A9CE-34FEC0FFB375}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{445CF2C3-079F-4A46-A9CE-34FEC0FFB375}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{445CF2C3-079F-4A46-A9CE-34FEC0FFB375}.Debug|Any CPU.Build.0 = Debug|Any CPU
{445CF2C3-079F-4A46-A9CE-34FEC0FFB375}.Release|Any CPU.ActiveCfg = Release|Any CPU
{445CF2C3-079F-4A46-A9CE-34FEC0FFB375}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {9F324833-6688-45FE-8524-BB54CC5DC627}
EndGlobalSection
EndGlobal

Просмотреть файл

@ -0,0 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
</PropertyGroup>
</Project>

Просмотреть файл

@ -0,0 +1,11 @@
using System;
namespace AppVNext.Notifier
{
class Program
{
static void Main(string[] args)
{
}
}
}