1
0
mirror of https://github.com/bitwarden/server synced 2025-12-10 13:23:27 +00:00

fixup routing and sdk links

This commit is contained in:
Matt Gibson
2025-11-18 11:00:09 -08:00
parent ac036efdae
commit 620830bfd8
2 changed files with 4 additions and 2 deletions

View File

@@ -18,12 +18,12 @@
<Content Include="./rust/target/release/libsdk*.so">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<PackageCopyToOutput>true</PackageCopyToOutput>
<Link>runtimes/linux-x64/native/libsdk.dylib</Link>
<Link>runtimes/linux-x64/native/libsdk.so</Link>
</Content>
<Content Include="./rust/target/release/libsdk*.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<PackageCopyToOutput>true</PackageCopyToOutput>
<Link>runtimes/windows-x64/native/libsdk.dylib</Link>
<Link>runtimes/windows-x64/native/libsdk.dll</Link>
</Content>
<!-- This is a work around because this file is compiled by the PreBuild event below, and won't

View File

@@ -42,6 +42,8 @@ if (!app.Environment.IsDevelopment())
app.UseRouting();
app.MapControllerRoute(name: "default", pattern: "{controller=Seed}/{action=Index}/{id?}");
app.Run();
// Make Program class accessible for integration tests