Skip to content

Commit

Permalink
Create project
Browse files Browse the repository at this point in the history
  • Loading branch information
acid-chicken committed Oct 15, 2018
1 parent 529fa4a commit d22d6da
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 1 deletion.
18 changes: 17 additions & 1 deletion NewWave.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
Microsoft Visual Studio Solution File, Format Version 12.00
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26124.0
MinimumVisualStudioVersion = 15.0.26124.0
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NewWave", "NewWave\NewWave.csproj", "{68853BCD-F111-49CB-8355-70D76E1641DA}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -14,4 +16,18 @@ Global
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{68853BCD-F111-49CB-8355-70D76E1641DA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{68853BCD-F111-49CB-8355-70D76E1641DA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{68853BCD-F111-49CB-8355-70D76E1641DA}.Debug|x64.ActiveCfg = Debug|Any CPU
{68853BCD-F111-49CB-8355-70D76E1641DA}.Debug|x64.Build.0 = Debug|Any CPU
{68853BCD-F111-49CB-8355-70D76E1641DA}.Debug|x86.ActiveCfg = Debug|Any CPU
{68853BCD-F111-49CB-8355-70D76E1641DA}.Debug|x86.Build.0 = Debug|Any CPU
{68853BCD-F111-49CB-8355-70D76E1641DA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{68853BCD-F111-49CB-8355-70D76E1641DA}.Release|Any CPU.Build.0 = Release|Any CPU
{68853BCD-F111-49CB-8355-70D76E1641DA}.Release|x64.ActiveCfg = Release|Any CPU
{68853BCD-F111-49CB-8355-70D76E1641DA}.Release|x64.Build.0 = Release|Any CPU
{68853BCD-F111-49CB-8355-70D76E1641DA}.Release|x86.ActiveCfg = Release|Any CPU
{68853BCD-F111-49CB-8355-70D76E1641DA}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
12 changes: 12 additions & 0 deletions NewWave/NewWave.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.DotNet.ILCompiler" Version="(1.0.0-alpha-*,1.1]" />
</ItemGroup>

</Project>
12 changes: 12 additions & 0 deletions NewWave/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
using System;

namespace AcidChicken.NewWave
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}
5 changes: 5 additions & 0 deletions NewWave/rd.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<Directives>
<Application>
<Assembly Name="mscorlib" />
</Application>
</Directives>
8 changes: 8 additions & 0 deletions nuget.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="dotnet-core" value="https://dotnet.myget.org/F/dotnet-core/api/v3/index.json" />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
</packageSources>
</configuration>

0 comments on commit d22d6da

Please sign in to comment.