Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add sln and refactored to new opinionated folder structure #5

Merged
merged 14 commits into from
Dec 5, 2023
Merged
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
25 changes: 12 additions & 13 deletions .github/workflows/pr-loop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: setup-node
- name: setup-node-and-cache
uses: actions/setup-node@v3
with:
node-version: 16
cache: "npm"
cache-dependency-path: pcf/LinearInputControl/package-lock.json
cache-dependency-path: src/pcfs/LinearInputControl/package-lock.json

- name: cache-nuget
uses: actions/cache@v3
Expand All @@ -27,16 +27,15 @@ jobs:
restore-keys: |
${{ runner.os }}-nuget-

- name: npm install for pcf
- name: build
shell: pwsh
run: |
cd pcf/LinearInputControl
npm install
cd src
dotnet build --configuration release

- name: Restore dependencies
run: dotnet restore

- name: Build
run: dotnet build --no-restore --configuration release

- name: Test
run: dotnet test --no-build --verbosity normal
- name: test
shell: pwsh
run: |
cd src
dotnet test --no-build --verbosity normal

3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"sarif-viewer.connectToGithubCodeScanning": "off"
}
4 changes: 2 additions & 2 deletions HelloFusionDev.cdsproj → src/HelloFusionDev.cdsproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<!--Remove TargetFramework when this is available in 16.1-->
<TargetFramework>net462</TargetFramework>
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
<SolutionRootPath>src</SolutionRootPath>
<SolutionRootPath>solution</SolutionRootPath>
</PropertyGroup>

<PropertyGroup>
Expand Down Expand Up @@ -42,7 +42,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="pcf\LinearInputControl\LinearInputControl.pcfproj" />
<ProjectReference Include="pcfs\LinearInputControl\LinearInputControl.pcfproj" />
<ProjectReference Include="plugins\firstplugins\firstplugins.csproj" />
</ItemGroup>

Expand Down
File renamed without changes.
File renamed without changes.
25 changes: 25 additions & 0 deletions src/plugins/plugins.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.8.34322.80
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "firstplugins", "firstplugins\firstplugins.csproj", "{D775758D-BFC3-4D89-AB45-E44B57239F53}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{D775758D-BFC3-4D89-AB45-E44B57239F53}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D775758D-BFC3-4D89-AB45-E44B57239F53}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D775758D-BFC3-4D89-AB45-E44B57239F53}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D775758D-BFC3-4D89-AB45-E44B57239F53}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {EC407003-6EFB-4AD4-8BBE-76819CE5ADA2}
EndGlobalSection
EndGlobal
File renamed without changes.
File renamed without changes.
File renamed without changes.