Skip to content
This repository has been archived by the owner on Aug 28, 2021. It is now read-only.

Commit

Permalink
random experiment
Browse files Browse the repository at this point in the history
  • Loading branch information
didimitrie committed Feb 6, 2020
1 parent a485091 commit 756e800
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
13 changes: 13 additions & 0 deletions ConsoleApp-netcore/ConsoleApp-netcore.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">

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

<ItemGroup>
<ProjectReference Include="..\SpeckleCore\SpeckleCore.csproj" />
</ItemGroup>

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

namespace ConsoleApp_netcore
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
SpeckleCore.SpeckleInitializer.Initialize();
var types = SpeckleCore.SpeckleInitializer.GetTypes();
var test = types;
}
}
}
1 change: 1 addition & 0 deletions SpeckleTests/SpeckleTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<PackageReference Include="nunit" Version="3.12.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.13.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="4.7.0" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 756e800

Please sign in to comment.