You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have 3 executables I publish as a set, and I want them to use a single dotnet runtime.
I tried using NetBeauty2, and worked based on SharedRuntimeTest.
But it's achieved by setting <PublishDir>../publish/WsClient</PublishDir>. I want the PublishDir to be still set to publish, not the subfolder, and tell NetBeauty2 to use this folder structure, but I can't find a way. I tried setting BeautyDir, but it does nothing, and the other variables don't affect the exe, or ruin the relative paths when loading the dlls.
The text was updated successfully, but these errors were encountered:
to make them publishing as an application set, this two projects must have the same publish dir, you can publish app1 into app2's PublishDir or publish app2 into app1's PublishDir or just simply change the PublishDir to ${projectFolder}/publish.
I can copy the other app in a separate step, that's not my problem. Even with a single app, this causes problems for me.
There are other files and paths that are dependent on the publish dir, and this would, for example make a db file that was included in the publishdir root move to the app subdir. I don't want to change all paths related to publishdir, just for the sake of NetBeauty2.
What does BeautyDir mean then, if not this? With so many config options related to this already (BeautyDir, BeautyAppHostDir, BeautyAppHostEntry, BeautyLibsDir), shouldn't NetBeauty2 be able to handle this?
I have 3 executables I publish as a set, and I want them to use a single dotnet runtime.
I tried using NetBeauty2, and worked based on SharedRuntimeTest.
This is the directory structure in the example:
But it's achieved by setting
<PublishDir>../publish/WsClient</PublishDir>
. I want the PublishDir to be still set to publish, not the subfolder, and tell NetBeauty2 to use this folder structure, but I can't find a way. I tried setting BeautyDir, but it does nothing, and the other variables don't affect the exe, or ruin the relative paths when loading the dlls.The text was updated successfully, but these errors were encountered: