Skip to content

Commit 748f529

Browse files
authored
Finance lib specification and C Sharp
1 parent 4058d61 commit 748f529

27 files changed

+5487
-73
lines changed

libraries/FinLibCS/FinLibCS.csproj

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>netcoreapp3.1</TargetFramework>
6+
</PropertyGroup>
7+
8+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
9+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
10+
</PropertyGroup>
11+
12+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
13+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
14+
</PropertyGroup>
15+
16+
</Project>

libraries/FinLibCS/FinLibCS.sln

Lines changed: 25 additions & 0 deletions
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 Version 16
4+
VisualStudioVersion = 16.0.31129.286
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FinLibCS", "FinLibCS.csproj", "{EA644202-EAE6-4FCC-8D0B-6A1313D682FC}"
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+
{EA644202-EAE6-4FCC-8D0B-6A1313D682FC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{EA644202-EAE6-4FCC-8D0B-6A1313D682FC}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{EA644202-EAE6-4FCC-8D0B-6A1313D682FC}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{EA644202-EAE6-4FCC-8D0B-6A1313D682FC}.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 = {1D72C43F-AEA9-4955-A030-31276FAF7795}
24+
EndGlobalSection
25+
EndGlobal

0 commit comments

Comments
 (0)