Traducere "dotnet" în engleză
Nu am putut găsi această intrare. Se afișează rezultate aproximative. Verificați ortografia sau propuneți adăugarea acestui termen în dicționar.
A diferencia del desarrollo, la monitorización de aplicaciones de producción dotnet difiere.
Unlike development, dotnet production application monitoring differs.
En las próximas versiones, deberá escribir dotnet run en la línea de comandos.
In future releases, you'll write dotnet run from the command line.
De nuevo, con el comando new de dotnet, la opción - name tiene un argumento para especificar el nombre del proyecto.
Again, with dotnet new, the - name option has an argument for specifying the name of the project.
En este escenario, la herramienta por proyecto básicamente solo aceptaría todos los parámetros necesarios y lo traduciría en la invocación de dotnet msbuild necesaria que ejecutaría el target.
In this scenario, the per-project tool would essentially just accept whatever needed parameters and would translate that into the required dotnet msbuild invocation that would execute the target.
Se agrega la definición de un proceso y entonces se usa la aplicación para ejecutar un proceso de dotnet para la definición, usualmente un sitio.
You add a definition for a process and then use the application to run a dotnet process for the definition usually an site.
El comando de ejecución de dotnet utiliza" - " como identificador, lo que indica que el resto de argumentos se deben pasar al ejecutable para que los analice.
The dotnet run command uses the" - " as the identifier, indicating that all other arguments should be passed to the executable for it to parse.
Por costumbre, escribí todo en minúsculas (es decir, dotnet new blazor -o myapp).
Out of habit, I wrote everything in lowercase (i.e. dotnet new blazor -o myapp).
Después de esto, puede comenzar invocando el controlador "dotnet" y pasándole un comando (que también se conoce como "verbo").
After this, you can start by invoking the driver "dotnet" and passing a command (what we also call a "verb").
Por ejemplo, el comando build de dotnet incluye la opción - no-restore, que se puede especificar para deshabilitar la ejecución implícita del comando restore (y, en su lugar, depender de la ejecución anterior del comando restore).
For example, the dotnet build command includes the - no-restore option, which you can specify to disable the restore command from running implicitly (and instead relying on prior execution of the restore command).
dotnet - info devuelve lo siguiente
dotnet - info returns the following
Con una aplicación independiente, puede iniciarlo sin usar la ejecución de dotnet y, en su lugar, confiar solamente en el ejecutable resultante, como se muestra a continuación: XML
With a self-contained application, you can launch it without using dotnet run and instead just rely on the resulting executable, like so: XML
Si se especifican argumentos de línea de comandos en combinación con el comando de ejecución de dotnet, la línea de comandos completa sería: XML
When specifying command-line arguments in combination with the dotnet run command, the full command line would be: XML
Si, en cambio, ejecuta dotnet desde el mismo directorio en el que se encontraba el archivo csproj, la línea de comandos sería: XML
If you're running dotnet from the same directory in which the csproj file was located, however, the command line would read: XML