Questions tagged [self-contained]

Self-contained in programming can refer to a script, program or a library that is completely independent and contains everything necessary within its code.

Self-contained in programming can refer to a script, program or a library that is completely independent and contains everything necessary within its code. This is very useful in programming when creating libraries, as this makes them completely modular, and therefore easy to migrate from one project to another.

101 questions
2
votes
1 answer

.NET CORE self contained application deployment. Why RID needs to be Known when .NET Core is cross platform

in a .NET Core self contained application ... We need to specify runtime (RIDs) in project.json we want our application to publish against... Why is that so? .NET Core is cross platform and it should not matter to what platform or operating system…
Sana.91
  • 1,999
  • 4
  • 33
  • 52
2
votes
1 answer

Loading infinitely nested tuples from YAML

The following code generates an infinitely nested python list: import yaml i_list = yaml.load('&id1 [3, *id1]') print i_list # [3, [...]] print i_list[1] is i_list # True I can also explicitly mention the python list type: i_list = yaml.load('&id1…
Bach
  • 6,145
  • 7
  • 36
  • 61
2
votes
1 answer

JavaFX self-contained apps are missing the Cipher cryptographic service?

For some reason, JavaFX does not seem to currently support any algorithms for the Cipher cryptographic service when the application is executed after the self-contained deployment, as described here. Given this code: import…
ludwig
  • 23
  • 2
2
votes
3 answers

Create a self-contained program in C++

I'm using Visual Studio 2012. I wish to create a completely self-contained program that can be used on a machine without visual studio installed just by copying the exe file directly. I used to need to first run visual c++ 2012 redistributable to…
l3utterfly
  • 2,106
  • 4
  • 32
  • 58
2
votes
1 answer

Self Contained KMZ with Photos

Originally I created my KMZ file in ArcGIS 10.1 which included a latitude/longitude for some potential reclamation sites. In the end I have a a KMZ file when each placemark is clicked it pops up a information box that has a site description and a…
Curtis
  • 21
  • 2
2
votes
0 answers

How to build self-contained java fx application for various platform in a single build that runs on Window 8 64 bit machine

.Can be distributed as .zip or packaged as platform-specific installer. •No application changes, the same jar app binaries can be deployed as a native bundle, double-clickable jar Source with reference to these two above point I would like to do…
Ashish Pancholi
  • 4,569
  • 13
  • 50
  • 88
1
vote
2 answers

Self Contained MVC Website

I once read about a .net framework which allowed for an exe to house an entire website and server, so deploy was as easy as killing the exe and launching the new one. I am looking for that framework or any other like that for the .net runtime. Does…
maxfridbe
  • 5,872
  • 10
  • 58
  • 80
1
vote
1 answer

How are library dependencies managed in practice, in a self-contained/portable app?

I'm not an experienced programmer and I'm mostly self taught. I never really learned how to manage dependencies and I'm having some trouble finding the information I need, which I think it's pretty basic actually. I have a GitHub project that has…
1
vote
0 answers

Relationship between Micro Frontends (MFE) and Backend for Frontend (BFF)

I think that it is common consensus that each frontend-type should normally have an own BFF (see https://samnewman.io/patterns/architectural/bff and figure below). But what about micro frontends (MFE)? I read that each MFE also should have a BFF. My…
1
vote
1 answer

What is .NET Runtime Identifier for Windows 11

As you all know .NET let's us publish self-contained applications targeting a specific platform by mentioning the Runtime Identifier at the time of publish. For those of you who are not aware what a self-contained application is, more about it is…
shreesha
  • 1,811
  • 2
  • 21
  • 30
1
vote
1 answer

How to prevent a 404 when running my .NET 6 Web API as a self contained service?

I have made a simple .NET 6 Web API. This works fine when running from Visual Studio (by just pressing F5). However, when running my application as a self-contained service I get a 404 for calls that are supposed to succeed. How can I make sure my…
Daan
  • 2,478
  • 3
  • 36
  • 76
1
vote
1 answer

NET Core 6 self-contained app with additional probing path crash on Windows startup

I have a .NET Core 6.0 self-contained application (not a single file deploy). My app.runtimeconfig.json configuration file contains this setting: "runtimeOptions": { "additionalProbingPaths": [ "lib", "Lib" ], It's…
epikarma
  • 41
  • 1
  • 7
1
vote
1 answer

How to create Java JKS file from GoDaddy SSL certificate

I bought an SSL certificate in GoDaddy. I need to use it to start my Spark Java self-contained server through a secure connection. According to the documentation in http://sparkjava.com/documentation#examples-and-faq, I need to do the…
RDV
  • 193
  • 1
  • 3
  • 16
1
vote
4 answers

User Control that acts like a standard Window, only confined to a pane

I'm making a program to generate code for me, and I'm fashioning the UI after Game Maker due to how easy the interface is. It has a SplitContainer with Panel1 containing a TreeView and Panel2 containing an arbitrary amount of self-contained windows…
Eagle-Eye
  • 1,468
  • 2
  • 18
  • 26
1
vote
1 answer

Troubleshoot Service Fabric service deployment

We have a ServiceFabric service, which is running the latest .NET Core 3.1. We publish & deploy it as self-contained x64 app. After a recent update, we are unable to deploy it anymore. ServiceFabric gives very little information why. This is what we…
Dmytro Gokun
  • 405
  • 3
  • 24