Skip to content

Commit

Permalink
updating source files
Browse files Browse the repository at this point in the history
  • Loading branch information
agracio committed May 3, 2024
1 parent 0d9f643 commit 3ca1dc3
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 19 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:
dotnet-version: '8.0.x' # SDK Version to use; x will use the latest version of the 8.0 channel
- name: Versions
run: node -v && npm -v && dotnet --version && node -p process.platform && node -p process.arch
# - if: runner.os == 'macOS'
# name: Remove Mono from macOS
# run: |
# sudo rm -rf /Library/Frameworks/Mono.framework
# sudo pkgutil --forget com.xamarin.mono-MDK.pkg
# sudo rm /etc/paths.d/mono-commands
- if: runner.os == 'macOS'
name: Remove Mono from macOS
run: |
sudo rm -rf /Library/Frameworks/Mono.framework
sudo pkgutil --forget com.xamarin.mono-MDK.pkg
sudo rm /etc/paths.d/mono-commands
- name: Install dependencies
run: npm i
- name: Run Dotnet Build
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ bin/
obj/
package-lock.json
/src/.idea/.idea.QuickStart/.idea/workspace.xml
/src/QuickStart.sln.DotSettings.user
12 changes: 5 additions & 7 deletions src/QuickStart.Core/QuickStart.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,6 @@
<ItemGroup>
<ProjectReference Include="..\ExternalLibrary\ExternalLibrary.csproj" />
</ItemGroup>

<ItemGroup>
<Reference Include="EdgeJs">
<HintPath>..\..\node_modules\edge-js\lib\bootstrap\bin\Release\net6.0\EdgeJs.dll</HintPath>
<Private>true</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="..\shared\ExternalLibarary.cs">
<Link>ExternalLibarary.cs</Link>
Expand All @@ -29,5 +22,10 @@
<Link>LocalMethods.cs</Link>
</Compile>
</ItemGroup>
<ItemGroup>
<Reference Include="EdgeJs">
<HintPath>..\..\node_modules\edge-js\lib\bootstrap\bin\Release\EdgeJs.dll</HintPath>
</Reference>
</ItemGroup>

</Project>
11 changes: 5 additions & 6 deletions src/QuickStart.Standard/QuickStart.Standard.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,6 @@
<PackageReference Include="Microsoft.DotNet.InternalAbstractions" Version="1.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<Reference Include="EdgeJs">
<HintPath>..\..\node_modules\edge-js\lib\bootstrap\bin\Release\net6.0\EdgeJs.dll</HintPath>
<Private>true</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ExternalLibrary\ExternalLibrary.csproj" />
</ItemGroup>
Expand All @@ -28,4 +22,9 @@
<Link>LocalMethods.cs</Link>
</Compile>
</ItemGroup>
<ItemGroup>
<Reference Include="EdgeJs">
<HintPath>..\..\node_modules\edge-js\lib\bootstrap\bin\Release\EdgeJs.dll</HintPath>
</Reference>
</ItemGroup>
</Project>

0 comments on commit 3ca1dc3

Please sign in to comment.