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
Is your improvement related to a problem? Please describe.
As part of #343 we have added Windows Service support but are currently not bundling a deployment that ships a Windows assembly to actually install the service. People using the Windows deployment option currently have to build and install it from sources.
Describe the suggested solution
See above
Describe alternatives you've considered
Build from Sources
Clone the repository, build in release mode
Note
Depending on disk location, some Acceptance Test projects may not build correctly due to path length limitations. Exclude the test projects from the build
install the service using sc.exe create (needs to be run as Administrator, and commandline parameters need any quotation marks escaped), e.g.
Describe the suggested improvement
Is your improvement related to a problem? Please describe.
As part of #343 we have added Windows Service support but are currently not bundling a deployment that ships a Windows assembly to actually install the service. People using the Windows deployment option currently have to build and install it from sources.
Describe the suggested solution
See above
Describe alternatives you've considered
Build from Sources
Note
Depending on disk location, some Acceptance Test projects may not build correctly due to path length limitations. Exclude the test projects from the build
sc.exe create(needs to be run as Administrator, and commandline parameters need any quotation marks escaped), e.g.publishing the build doesn't work, since the solution currently relies on
Assembly.Locationwhich returns empty string when published.Additional Context
No response