Skip to content

Commit

Permalink
Add project files.
Browse files Browse the repository at this point in the history
  • Loading branch information
mausch committed Jun 14, 2018
1 parent b82b67d commit 6cecabc
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 0 deletions.
25 changes: 25 additions & 0 deletions metabase-exporter.sln
@@ -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}") = "metabase-exporter", "metabase-exporter\metabase-exporter.csproj", "{08A5CF48-01AF-4095-BD9B-7BE2DD79286F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{08A5CF48-01AF-4095-BD9B-7BE2DD79286F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{08A5CF48-01AF-4095-BD9B-7BE2DD79286F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{08A5CF48-01AF-4095-BD9B-7BE2DD79286F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{08A5CF48-01AF-4095-BD9B-7BE2DD79286F}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {AA5355A6-8469-4CE8-9CDA-44F0F134F53B}
EndGlobalSection
EndGlobal
12 changes: 12 additions & 0 deletions metabase-exporter/Program.cs
@@ -0,0 +1,12 @@
using System;

namespace metabase_exporter
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}
8 changes: 8 additions & 0 deletions metabase-exporter/metabase-exporter.csproj
@@ -0,0 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">

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

</Project>

0 comments on commit 6cecabc

Please sign in to comment.