Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Build Windows installer
env:
AZURE_KEY_VAULT_CLIENT_SECRET: ${{ secrets.AZURE_KEY_VAULT_CLIENT_SECRET }}
run: msbuild src/Setup -p:Configuration=Release -restore -m
run: dotnet build src/Setup --configuration Release
- name: Publish artifacts
uses: actions/upload-artifact@v7.0.1
with:
Expand Down
3 changes: 3 additions & 0 deletions src/ServiceInsight.slnx
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
<Solution>
<Folder Name="/Installer/">
<File Path="Setup/Setup.csproj" />
</Folder>
<Folder Name="/Solution Items/">
<File Path="Custom.Build.props" />
<File Path="Setup/Setup.csproj" />
Expand Down
4 changes: 0 additions & 4 deletions src/Setup/Setup.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@
<TargetFramework>net48</TargetFramework>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\ServiceInsight\ServiceInsight.csproj" />
</ItemGroup>

<Target Name="CreateInstaller" AfterTargets="Build">
<PropertyGroup>
<AdvancedInstallerPath>$(registry:HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Caphyon\Advanced Installer@Advanced Installer Path)</AdvancedInstallerPath>
Expand Down
Loading