Skip to content

Commit

Permalink
Minor review findings
Browse files Browse the repository at this point in the history
  • Loading branch information
pgrawehr committed May 26, 2024
1 parent 8286471 commit 5e5e73c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/arduino.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
configuration: [Debug, Release]
configuration: [Release]

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand Down
6 changes: 6 additions & 0 deletions tools/ArduinoCsCompiler/Frontend/Frontend.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
<ToolCommandName>dotnet-acs</ToolCommandName>
<PackageOutputPath>..\..\..\artifacts\packages\$(Configuration)\Shipping</PackageOutputPath>
<Version>1.0.2</Version>
<!-- Stay in beta mode -->
<SuppressFinalPackageVersion>true</SuppressFinalPackageVersion>
</PropertyGroup>

<ItemGroup>
Expand All @@ -33,6 +35,10 @@
<ItemGroup>
<ProjectReference Include="..\ArduinoCsCompiler.csproj" />
</ItemGroup>
<!-- In debug mode, we take the dependencies from the current build, in release mode we link to the officially released packages.
This implies that any application the user want's to translate do the same. If they're not part of the same repository,
they will always link to the packages, not the projects.
-->
<ItemGroup Condition="$(Configuration)=='Debug'">
<ProjectReference Include="..\..\..\src\devices\Mcp3xxx\Mcp3xxx.csproj" />
<ProjectReference Include="..\..\..\src\devices\Bmxx80\Bmxx80.csproj" />
Expand Down

0 comments on commit 5e5e73c

Please sign in to comment.