-
We are developing a tool to export result summaries and want to deploy it as a standard .NET application. Users may not have MIKE1D installed. In the example, it recommends to check the MIKE Install as shown below. Is there a way to deploy the application without MIKE1D installation? We only read res1d files. Does it require MIKE licenses?
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
If you only need to handle res1d files, then only the MIKE 1D The tool has to be 64 bit, and if building for .NET Core / .NET 5+ in Visual Studio, you need the Publish step to get all the native dependencies. |
Beta Was this translation helpful? Give feedback.
-
If I make a .NET Framework console application, add Two details that makes this work: |
Beta Was this translation helpful? Give feedback.
-
Platform target is in the project properties, and |
Beta Was this translation helpful? Give feedback.
If you only need to handle res1d files, then only the MIKE 1D
ResultDataAccess
and theGeneric
component are required. For that, everything needed is included in theDHI.Mike1D.ResultDataAccess
NuGet package and its dependencies, which you can just grab and xcopy deploy together with your own tool. No license is required, no MIKE installation, and no use ofDHI.MIKE.Install
.The tool has to be 64 bit, and if building for .NET Core / .NET 5+ in Visual Studio, you need the Publish step to get all the native dependencies.