Skip to content

Commit 75476b5

Browse files
committed
Added samples solution
1 parent 2c4b687 commit 75476b5

File tree

6 files changed

+61
-1
lines changed

6 files changed

+61
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>netcoreapp2.1</TargetFramework>
6+
</PropertyGroup>
7+
8+
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
using System;
2+
3+
namespace Cmdty.Storage.Samples.Intrinsic
4+
{
5+
class Program
6+
{
7+
static void Main(string[] args)
8+
{
9+
Console.WriteLine("Hello World!");
10+
}
11+
}
12+
}
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.28307.779
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Cmdty.Storage.Samples.Intrinsic", "Cmdty.Storage.Samples.Intrinsic\Cmdty.Storage.Samples.Intrinsic.csproj", "{DCE9B12B-ED10-497A-8145-A25143CF96A7}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{DCE9B12B-ED10-497A-8145-A25143CF96A7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{DCE9B12B-ED10-497A-8145-A25143CF96A7}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{DCE9B12B-ED10-497A-8145-A25143CF96A7}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{DCE9B12B-ED10-497A-8145-A25143CF96A7}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {FA63593C-8D85-4AA2-8480-A728971A688C}
24+
EndGlobalSection
25+
EndGlobal

samples/csharp/Directory.Build.props

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<Project>
2+
<PropertyGroup>
3+
<Authors>Jake Fowler</Authors>
4+
<Copyright>Copyright © Jake Fowler 2019</Copyright>
5+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
6+
</PropertyGroup>
7+
</Project>

samples/csharp/NuGet.config

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<packageSources>
4+
<!--To inherit the global NuGet package sources remove the <clear/> line below -->
5+
<clear />
6+
<add key="NuGet.org (v3)" value="https://api.nuget.org/v3/index.json" />
7+
<add key="Cmdty" value="https://pkgs.dev.azure.com/cmdty/_packaging/cmdty/nuget/v3/index.json" />
8+
</packageSources>
9+
</configuration>

tests/Cmdty.Storage.Test/Cmdty.Storage.Test.csproj

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Cmdty.Curves" Version="0.1.0-alpha2019081704" />
1110
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
1211
<PackageReference Include="xunit" Version="2.4.0" />
1312
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" />

0 commit comments

Comments
 (0)