Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Src/numl.Tests/numl.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<PackageReference Include="xunit" Version="2.2.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.2.0" />
<PackageReference Include="FluentAssertions" Version="4.19.0" />
<EmbeddedResource Include="**\*.resx" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\numl\numl.csproj" />
Expand Down
21 changes: 21 additions & 0 deletions Src/numl.Tests/project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"version": "1.0.0-*",
"dependencies": {
"numl": "0.9.13-beta",
"xunit": "2.2.0-*",
"FluentAssertions": "4.14.0",
"dotnet-test-xunit": "2.2.0-*"
},
"testRunner": "xunit",
"frameworks": {
"netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.1.0-*",
"type": "platform"
}
}
}
}

}
30 changes: 26 additions & 4 deletions Src/numl.sln
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26228.4
VisualStudioVersion = 15.0.26228.9
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{B002D86D-AF04-48EE-9F22-F7DC8FA747A4}"
ProjectSection(SolutionItems) = preProject
..\.gitattributes = ..\.gitattributes
..\.gitignore = ..\.gitignore
..\Build\build.cake = ..\Build\build.cake
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "numl", "numl\numl.csproj", "{554363C6-5979-4C9A-90E6-E70AF2D5CC09}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "numl.Tests", "numl.Tests\numl.Tests.csproj", "{801D4C20-F3BB-48B5-8530-2F8E9D2AC1D1}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "numl.Tests", "numl.Tests\numl.Tests.csproj", "{801D4C20-F3BB-48B5-8530-2F8E9D2AC1D1}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "numlR", "numlR\numlR.csproj", "{1C65B9E4-0843-47F7-A0F6-4CF7EF30164E}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "numlsample.GettingStarted", "numlsample.GettingStarted\numlsample.GettingStarted.csproj", "{70589B72-0E1B-4D92-B92D-B0EE30B2E73C}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down Expand Up @@ -43,6 +49,16 @@ Global
{801D4C20-F3BB-48B5-8530-2F8E9D2AC1D1}.Release|x64.Build.0 = Release|Any CPU
{801D4C20-F3BB-48B5-8530-2F8E9D2AC1D1}.Release|x86.ActiveCfg = Release|Any CPU
{801D4C20-F3BB-48B5-8530-2F8E9D2AC1D1}.Release|x86.Build.0 = Release|Any CPU
{70589B72-0E1B-4D92-B92D-B0EE30B2E73C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{70589B72-0E1B-4D92-B92D-B0EE30B2E73C}.Debug|x64.ActiveCfg = Debug|Any CPU
{70589B72-0E1B-4D92-B92D-B0EE30B2E73C}.Debug|x86.ActiveCfg = Debug|Any CPU
{70589B72-0E1B-4D92-B92D-B0EE30B2E73C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{70589B72-0E1B-4D92-B92D-B0EE30B2E73C}.Release|x64.ActiveCfg = Release|Any CPU
{70589B72-0E1B-4D92-B92D-B0EE30B2E73C}.Release|x86.ActiveCfg = Release|Any CPU
{801D4C20-F3BB-48B5-8530-2F8E9D2AC1D1}.Release|x64.ActiveCfg = Release|Any CPU
{801D4C20-F3BB-48B5-8530-2F8E9D2AC1D1}.Release|x64.Build.0 = Release|Any CPU
{801D4C20-F3BB-48B5-8530-2F8E9D2AC1D1}.Release|x86.ActiveCfg = Release|Any CPU
{801D4C20-F3BB-48B5-8530-2F8E9D2AC1D1}.Release|x86.Build.0 = Release|Any CPU
{1C65B9E4-0843-47F7-A0F6-4CF7EF30164E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1C65B9E4-0843-47F7-A0F6-4CF7EF30164E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1C65B9E4-0843-47F7-A0F6-4CF7EF30164E}.Debug|x64.ActiveCfg = Debug|Any CPU
Expand All @@ -62,4 +78,10 @@ Global
GlobalSection(TestCaseManagementSettings) = postSolution
CategoryFile = numl.vsmdi
EndGlobalSection
GlobalSection(TestCaseManagementSettings) = postSolution
CategoryFile = numl.vsmdi
EndGlobalSection
GlobalSection(TestCaseManagementSettings) = postSolution
CategoryFile = numl.vsmdi
EndGlobalSection
EndGlobal
Loading