Skip to content

Commit

Permalink
Merge pull request #6 from shimat/folder
Browse files Browse the repository at this point in the history
Changed directory structure
  • Loading branch information
shimat authored Jun 3, 2024
2 parents 2865966 + 969ae44 commit b1f2ad5
Show file tree
Hide file tree
Showing 50 changed files with 13 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: dotnet restore

- name: Build
run: dotnet build --no-restore --framework net48 ./LibSVMSharp.Tests/LibSVMSharp.Tests.csproj
run: dotnet build --no-restore --framework net48 ./src/LibSVMSharp.Tests/LibSVMSharp.Tests.csproj

- name: Test
run: dotnet test --no-build --framework net48 --verbosity normal
Expand All @@ -42,7 +42,7 @@ jobs:
run: dotnet restore

- name: Build
run: dotnet build --no-restore --framework net8 ./LibSVMSharp.Tests/LibSVMSharp.Tests.csproj
run: dotnet build --no-restore --framework net8 ./src/LibSVMSharp.Tests/LibSVMSharp.Tests.csproj

- name: Test
run: dotnet test --no-build --framework net8 --verbosity normal
Expand Down
14 changes: 9 additions & 5 deletions LibSVMsharp.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,23 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.9.34616.47
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LibSVMsharp", "LibSVMsharp\LibSVMsharp.csproj", "{AC04337C-E542-4BE9-8DBD-5B44535299E2}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LibSVMsharp", "src\LibSVMsharp\LibSVMsharp.csproj", "{AC04337C-E542-4BE9-8DBD-5B44535299E2}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Examples", "Examples", "{B7C949C2-345F-404F-BD38-4F2C0519A5F2}"
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "examples", "examples", "{B7C949C2-345F-404F-BD38-4F2C0519A5F2}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LibSVMsharp.Examples.Classification", "LibSVMsharp.Examples.Classification\LibSVMsharp.Examples.Classification.csproj", "{40F859AD-241A-4379-831C-8FB69BE6A8B1}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LibSVMsharp.Examples.Classification", "examples\LibSVMsharp.Examples.Classification\LibSVMsharp.Examples.Classification.csproj", "{40F859AD-241A-4379-831C-8FB69BE6A8B1}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LibSVMsharp.Examples.RapidPrediction", "LibSVMsharp.Examples.RapidPrediction\LibSVMsharp.Examples.RapidPrediction.csproj", "{FFDF7EA5-53DA-4DF7-9DD8-E4E7DE2B5AB6}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LibSVMsharp.Examples.RapidPrediction", "examples\LibSVMsharp.Examples.RapidPrediction\LibSVMsharp.Examples.RapidPrediction.csproj", "{FFDF7EA5-53DA-4DF7-9DD8-E4E7DE2B5AB6}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LibSVMSharp.Tests", "LibSVMSharp.Tests\LibSVMSharp.Tests.csproj", "{2DE0BD3C-C37B-4B23-9533-2F91C1DD15C3}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LibSVMSharp.Tests", "src\LibSVMSharp.Tests\LibSVMSharp.Tests.csproj", "{2DE0BD3C-C37B-4B23-9533-2F91C1DD15C3}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{F41B08D2-3D78-401E-9773-CA850D7744CD}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{47BCFD33-A99F-40CB-8F28-01163E58FAD6}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -45,7 +47,9 @@ Global
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{AC04337C-E542-4BE9-8DBD-5B44535299E2} = {47BCFD33-A99F-40CB-8F28-01163E58FAD6}
{40F859AD-241A-4379-831C-8FB69BE6A8B1} = {B7C949C2-345F-404F-BD38-4F2C0519A5F2}
{FFDF7EA5-53DA-4DF7-9DD8-E4E7DE2B5AB6} = {B7C949C2-345F-404F-BD38-4F2C0519A5F2}
{2DE0BD3C-C37B-4B23-9533-2F91C1DD15C3} = {47BCFD33-A99F-40CB-8F28-01163E58FAD6}
EndGlobalSection
EndGlobal
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<Reference Include="Microsoft.CSharp" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\LibSVMsharp\LibSVMsharp.csproj" />
<ProjectReference Include="$(SolutionDir)\src\LibSVMsharp\LibSVMsharp.csproj" />
</ItemGroup>
<ItemGroup>
<Content Include="Dataset\wine.txt">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<Reference Include="Microsoft.CSharp" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\LibSVMsharp\LibSVMsharp.csproj" />
<ProjectReference Include="$(SolutionDir)\src\LibSVMsharp\LibSVMsharp.csproj" />
</ItemGroup>
<ItemGroup>
<Content Include="Dataset\wine.txt">
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit b1f2ad5

Please sign in to comment.