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
0
votes
1 answer

What is the difference between a fully contained database & Azure SQL Single database

When a database is fully contained, it is having all the objects within the database boundary. It manages connection also at database level. Contained Database I have few questions: If I host a contained database in Azure SQL Single DB then what…
Venkataraman R
  • 12,181
  • 2
  • 31
  • 58
0
votes
1 answer

Self-contained Linux 64 package on Visual Studio for Mac

When working with a .NET Core app in Visual Studio 2019 for Windows I have options to publish app as a Windows, Linux or Mac package, framework-dependent or self-contained. I must be missing something obvious, but how do I do the same in Visual…
Yuriy Galanter
  • 38,833
  • 15
  • 69
  • 136
0
votes
1 answer

Win 10 -> VS 2019 -> .NET Core 3 WPF application -> Publish to directory (self-contained for linux-x64) -> Publish failed

Weird issue I've faced today. Pre-requisites: Installed: VS2019 .NET Core 3.0 Steps to reproduce the issue: Create new "WPF App (.NET Core)" To the MainWindow.xaml add single TextBlock:
Anatolyevich
  • 671
  • 5
  • 14
0
votes
0 answers

How to publish a full self-contained .NetCoreApp as exe?

I'm trying to publish an usable exe-file of my C# .NetCoreApp2.2 console application. I have written a little application in C# using the Visual Studio Code IDE. I started by typing dotnet new console and opened the project within Visual Studio…
Benny
  • 99
  • 9
0
votes
1 answer

How do you build the directory structure of a self-contained java program from scratch?

I'm programming my first 2D game in java. I'm writing the code in Atom. I compile and run the code from the terminal on my Mac. The game works great so far! But I fear I am structuring my project incorrectly and will not be able to deploy it when it…
0
votes
1 answer

self-contained javafx application fail to run in ubuntu : issue with GLIBCXX_3.4.21

I built a small app using javafx ( very basic stuff ) compile using javac : OK ( oracle jdk 1.8.0_201-b09 ) crated the jar : OK : the jar works fine with java -jar packaged the app using javapackager javapackager \ -deploy \ -daemon \ …
Atla ntun
  • 11
  • 3
0
votes
1 answer

Deploying a cross-compilation toolchain in Docker

Working on a cross-compilation toolchain (for riscv architecture), using the Rocket-Chip generator project. This has a lot of dependencies, I developed everything on a Ubuntu 16.04 LTS machine. And I would like to deploy this in other machines…
noureddine-as
  • 453
  • 4
  • 12
0
votes
1 answer

.Net Core published application need chmod 777 permissions to run on Centos7

chmod 777 ./myapp Why do i need to provide chmod 777 to myapp after every publish. Without providing permissions the result of ./myapp is: Permission denied. Even when logged in using root user. Are there any alternatives to do this?
Harit Kumar
  • 2,272
  • 2
  • 12
  • 24
0
votes
0 answers

Autonomous UIViewController

I want to create a UIViewController, that contains logic to present itself according to that logic. Why? I want this to be an isolated class that can be easily implemented into any project with minimum effort. Like just drag and drop into a…
Sjakelien
  • 2,255
  • 3
  • 25
  • 43
0
votes
0 answers

Shortening VSTS releases for ASP.NET Core SCD

I've got a basic ASP.NET Core web application with automated deployments running via VSTS. I was very surprised to receive an email just now telling me that my free Hosted Pipeline's allowance for this month has expired (4 hours total!). That's…
Telvee32
  • 109
  • 1
  • 7
0
votes
1 answer

Trouble building self contained .NetCore App

So I am trying to build a self contained .NetCore App, just a simple default hello world one. I followed Scott Hanselman's example on how to create the app after googling for answers. So I have this code in my project.json { "version": "1.0.0-*", …
jwknz
  • 6,598
  • 16
  • 72
  • 115
0
votes
0 answers

JavaFX .exe file created with Ant Failed

I am developing an JavaFX application and used the native packaging tool (incl. Inno Setup 5 and WiX) to create .exe files and installers. The program is a self-containing application. When I install and execute it on my own computer (Windows 10) it…
IrApp
  • 1,823
  • 5
  • 24
  • 42
0
votes
1 answer

What does "self-contained" mean?

I’ve read the definition of figure: The figure element represents a unit of content, optionally with a caption, that is self-contained, that is typically referenced as a single unit from the main flow of the document, and that can be moved away…
user3646717
  • 1,095
  • 2
  • 12
  • 21
0
votes
1 answer

How to change application name when deploying native self contained applications with javafx?

I am using JavaFX ant scripts to generate native bundles. The generated native executables use the name of the Main class. Is there any way to specify what the executable name should be? short of renaming the Main class? I've scoured the Internet…
0
votes
0 answers

Self contained JAR with Tomcat and JNDI placeholders

I'm in the process of transitioning the legacy Spring 3.2.8 application from WAR deployment to self-contained JAR. I'm using tomcat7-maven-plugin to create an executable JAR: mvn install tomcat7:exec-war Since the application uses JNDI placeholders,…
yuiu
  • 93
  • 10