Skip to content

Commit

Permalink
Add RoboSharp.dll with Git LFS
Browse files Browse the repository at this point in the history
- The DLL required to get the Github Action build to work
- `release-build.yml`: configure LFS for Github Action
- Commands to use Git LFS, executed in PowerShell:

  ```ps
  git lfs install
  git lfs track "*.dll"
  git add -u -f .\Binaries\RoboSharp.dll .gitattributes
  ```
  • Loading branch information
Michael Mell committed Aug 7, 2024
1 parent 9d3baeb commit adbf455
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*.dll filter=lfs diff=lfs merge=lfs -text
*.pdb filter=lfs diff=lfs merge=lfs -text
1 change: 1 addition & 0 deletions .github/workflows/release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
uses: actions/checkout@v4.1.1
with:
fetch-depth: 0
lfs: 'true'

- name: setup-msbuild
uses: microsoft/setup-msbuild@v2
Expand Down
5 changes: 3 additions & 2 deletions ATxService/ATxService.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,9 @@
<HintPath>..\packages\NLog.4.3.11\lib\net45\NLog.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="RoboSharp">
<HintPath>..\..\robosharp\RoboSharp\bin\Release\RoboSharp.dll</HintPath>
<Reference Include="RoboSharp, Version=1.1.2.11, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\Binaries\RoboSharp.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Configuration" />
Expand Down
3 changes: 3 additions & 0 deletions Binaries/RoboSharp.dll
Git LFS file not shown

0 comments on commit adbf455

Please sign in to comment.