Merge branch 'release/2.2.1xx' into merges/release/2.1.4xx-to-release/2.2.1xx
This commit is contained in:
commit
d71eb98fde
120 changed files with 435 additions and 442 deletions
|
@ -29,7 +29,9 @@ tools\TestAssetsDependencies\TestAssetsDependencies.csproj
|
||||||
<DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
|
<DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
|
||||||
<DisableImplicitPackageTargetFallback>true</DisableImplicitPackageTargetFallback>
|
<DisableImplicitPackageTargetFallback>true</DisableImplicitPackageTargetFallback>
|
||||||
|
|
||||||
<CliTargetFramework>netcoreapp2.1</CliTargetFramework>
|
<CliTargetFramework>netcoreapp2.2</CliTargetFramework>
|
||||||
|
<!-- We only need this until we get a stage0 with a 2.2 SDK. -->
|
||||||
|
<NETCoreAppMaximumVersion>2.2</NETCoreAppMaximumVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<Import Project="build/InitRepo.props" />
|
<Import Project="build/InitRepo.props" />
|
||||||
|
|
|
@ -2,43 +2,42 @@
|
||||||
|
|
||||||
The runtime configuration files store the dependencies of an application (formerly stored in the `.deps` file). They also include runtime configuration options, such as the Garbage Collector mode. Optionally they can also include data for runtime compilation (compilation settings used to compile the original application, and reference assemblies used by the application).
|
The runtime configuration files store the dependencies of an application (formerly stored in the `.deps` file). They also include runtime configuration options, such as the Garbage Collector mode. Optionally they can also include data for runtime compilation (compilation settings used to compile the original application, and reference assemblies used by the application).
|
||||||
|
|
||||||
**Note:** This document doesn't provide full explanations as to why individual items are needed in this file. That is covered in the [`corehost` spec](corehost.md) and via the `Microsoft.Extensions.DependencyModel` assembly.
|
**Note:** This document doesn't provide full explanations as to why individual items are needed in this file. That is covered in the [host spec](corehost.md) and via the `Microsoft.Extensions.DependencyModel` assembly.
|
||||||
|
|
||||||
## What produces the files and where are they?
|
## What produces the files and where are they?
|
||||||
|
|
||||||
There are two runtime configuration files for a particular application. Given a project named `MyApp`, the compilation process produces the following files (on Windows, other platforms are similar):
|
There are two runtime configuration files for a particular application. Given a project named `MyApp`, the compilation process produces the following files (on Windows, other platforms are similar):
|
||||||
|
|
||||||
* `MyApp.dll` - The managed assembly for `MyApp`, including an ECMA-compliant entry point token.
|
* `MyApp.dll` - The managed assembly for `MyApp`, including an ECMA-compliant entry point token.
|
||||||
* `MyApp.exe` - A copy of the `corehost.exe` executable. Only present when the application is a self-contained application.
|
* `MyApp.exe` - A copy of the `apphost.exe` executable. This is present when the application is self-contained, and in newer functionality (2.1.0+) for framework-dependent applications that wish to support platform-specific (non-portable) executables.
|
||||||
* `MyApp.runtimeconfig.json` - An **optional** configuration file containing runtime configuration settings. This file is required for portable applications, but not for self-contained apps.
|
* `MyApp.runtimeconfig.json` - An **optional** configuration file containing runtime configuration settings. This file is required for framework-dependent applications, but not for self-contained apps.
|
||||||
* `MyApp.deps.json` - A list of dependencies, as well as compilation context data and compilation dependencies. Not technically required, but required to use the servicing or package cache/shared package install features.
|
* `MyApp.runtimeconfig.dev.json` - An **optional** configuration file containing runtime configuration settings that typically only exists in a non-published output and thus is used for development-time scenarios. This file typically specifies additional probing paths. Depending on the semantics of each setting, the setting is either combined with or overridden by the values from `MyApp.runtimeconfig.json`.
|
||||||
|
* `MyApp.deps.json` - A list of dependencies, compilation dependencies and version information used to address assembly conflicts. Not technically required, but required to use the servicing or package cache/shared package install features, and to assist during roll-forward scenarios to select the newest version of any assembly that exists more than once in the application and framework(s). If the file is not present, all assemblies in the current folder are used instead.
|
||||||
|
|
||||||
The `MyApp.runtimeconfig.json` is designed to be user-editable (in the case of an app consumer wanting to change various CLR runtime options for an app, much like the `MyApp.exe.config` XML file works in .NET 4.x today). However, the `MyApp.deps.json` file is designed to be processed by automated tools and should not be user-edited. Having the files as separate makes this clearer. We could use a different format for the deps file, but if we're already integrating a JSON parser into the host, it seems most appropriate to re-use that here. Also, there are diagnostic benefits to being able to read the `.deps.json` file in a simple text editor.
|
The `MyApp.runtimeconfig.json` is designed to be user-editable (in the case of an app consumer wanting to change various CLR runtime options for an app, much like the `MyApp.exe.config` XML file works in .NET 4.x today). However, the `MyApp.deps.json` file is designed to be processed by automated tools and should not be user-edited. Having the files as separate makes this clearer. We could use a different format for the deps file, but if we're already integrating a JSON parser into the host, it seems most appropriate to re-use that here. Also, there are diagnostic benefits to being able to read the `.deps.json` file in a simple text editor.
|
||||||
|
|
||||||
**IMPORTANT**: Portable Applications, i.e. those published without a specific RID, have some adjustments to this spec which is covered at the end.
|
**IMPORTANT**: Framework-dependent applications have some adjustments to this spec which are covered at the end.
|
||||||
|
|
||||||
## File format
|
## File format
|
||||||
|
|
||||||
The files are both JSON files stored in UTF-8 encoding. Below are sample files. Note that not all sections are required and some will be opt-in only (see below for more details). The `.runtimeconfig.json` file is completely optional, and in the `.deps.json` file, only the `runtimeTarget`, `targets` and `libraries` sections are required (and within the `targets` section, only the runtime-specific target is required).
|
The files are both JSON files stored in UTF-8 encoding. Below are sample files. Note that not all sections are required and some will be opt-in only (see below for more details). The `.runtimeconfig.json` file is completely optional, and in the `.deps.json` file, only the `runtimeTarget`, `targets` and `libraries` sections are required (and within the `targets` section, only the runtime-specific target is required). If no `.deps.json` exists, all assemblies local to the app will be added as TPA (trusted platform assemblies).
|
||||||
|
|
||||||
### [appname].runtimeconfig.json
|
### [appname].runtimeconfig.json
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"runtimeOptions": {
|
"runtimeOptions": {
|
||||||
|
|
||||||
"configProperties": {
|
"configProperties": {
|
||||||
"System.GC.Server": true,
|
"System.GC.Server": true,
|
||||||
"System.GC.Concurrent": true,
|
"System.GC.Concurrent": true,
|
||||||
"System.Threading.ThreadPool.MinThreads": 4,
|
"System.Threading.ThreadPool.MinThreads": 4,
|
||||||
"System.Threading.ThreadPool.MaxThreads": 8
|
"System.Threading.ThreadPool.MaxThreads": 8
|
||||||
},
|
},
|
||||||
|
|
||||||
"framework": {
|
"framework": {
|
||||||
"name": "Microsoft.DotNetCore",
|
"name": "Microsoft.NETCore.App",
|
||||||
"version": "1.0.1"
|
"version": "2.1.0"
|
||||||
},
|
},
|
||||||
|
"applyPatches": true,
|
||||||
"applyPatches": false
|
"rollForwardOnNoCandidateFx": 1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
@ -46,75 +45,71 @@ The files are both JSON files stored in UTF-8 encoding. Below are sample files.
|
||||||
### [appname].deps.json
|
### [appname].deps.json
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"runtimeTarget": ".NETStandardApp,Version=v1.5/osx.10.10-x64",
|
"runtimeTarget": {
|
||||||
"compilationOptions": {
|
"name": ".NETCoreApp,Version=v2.0",
|
||||||
"defines": [ "DEBUG" ]
|
"signature": "aafc507050a6c13a0cf2d6d4c3de136e6571da6e"
|
||||||
},
|
},
|
||||||
"targets": {
|
"compilationOptions": {
|
||||||
".NETStandardApp,Version=v1.5": {
|
"defines": [
|
||||||
"MyApp/1.0": {
|
"TRACE",
|
||||||
"type": "project",
|
"DEBUG"
|
||||||
"dependencies": {
|
],
|
||||||
"AspNet.Mvc": "1.0.0"
|
"languageVersion": "",
|
||||||
}
|
"platform": "",
|
||||||
},
|
"warningsAsErrors": false,
|
||||||
"System.Foo/1.0.0": {
|
},
|
||||||
"type": "package",
|
"targets": {
|
||||||
},
|
".NETCoreApp,Version=v2.0": {
|
||||||
"System.Banana/1.0.0": {
|
"MyApp/1.0.0": {
|
||||||
"type": "package",
|
"dependencies": {
|
||||||
"dependencies": {
|
"System.Banana": "1.0.0"
|
||||||
"System.Foo": "1.0.0"
|
|
||||||
},
|
|
||||||
"compile": {
|
|
||||||
"ref/dotnet5.4/System.Banana.dll": { }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
".NETStandardApp,Version=v1.5/osx.10.10-x64": {
|
"runtime": {
|
||||||
"MyApp/1.0": {
|
"MyApp.dll": {}
|
||||||
"type": "project",
|
|
||||||
"dependencies": {
|
|
||||||
"AspNet.Mvc": "1.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Foo/1.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"runtime": {
|
|
||||||
"lib/dnxcore50/System.Foo.dll": { }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Banana/1.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"dependencies": {
|
|
||||||
"System.Foo": "1.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/dnxcore50/System.Banana.dll": { }
|
|
||||||
},
|
|
||||||
"resources": {
|
|
||||||
"lib/dnxcore50/fr-FR/System.Banana.resources.dll": { "locale": "fr-FR" }
|
|
||||||
},
|
|
||||||
"native": {
|
|
||||||
"runtimes/osx.10.10-x64/native/libbananahelper.dylib": { }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"libraries": {
|
"System.Banana/1.0.0": {
|
||||||
"MyApp/1.0": {
|
"dependencies": {
|
||||||
"type": "project"
|
"System.Foo": "1.0.0"
|
||||||
},
|
},
|
||||||
"System.Foo/1.0": {
|
"runtime": {
|
||||||
"type": "package",
|
"lib/netcoreapp2.0/System.Banana.dll": {
|
||||||
"serviceable": true,
|
"assemblyVersion": "1.0.0.0",
|
||||||
"sha512": "[base64 string]"
|
"fileVersion": "1.0.0.0"
|
||||||
},
|
}
|
||||||
"System.Banana/1.0": {
|
|
||||||
"type": "package",
|
|
||||||
"sha512": "[base64 string]"
|
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"System.Foo/1.0.0": {
|
||||||
|
"runtime": {
|
||||||
|
"lib/netcoreapp2.0/System.Foo.dll": {
|
||||||
|
"assemblyVersion": "1.0.0.0",
|
||||||
|
"fileVersion": "1.0.0.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"libraries": {
|
||||||
|
"MyApp/1.0.0": {
|
||||||
|
"type": "project",
|
||||||
|
"serviceable": false,
|
||||||
|
"sha512": ""
|
||||||
|
},
|
||||||
|
"System.Banana/1.0.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-C63ok7q+Fi6O6I/WB4ut3hFibGSraUlE461LxhhwNk5Vcdl4ijDhX1QDupDdp3Cxr7TgwB55Sd4zNtlwT7ksAA==",
|
||||||
|
"path": "system.banana/1.0.0",
|
||||||
|
"hashPath": "system.banana.1.0.0.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"System.Foo/1.0.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-avYGOiBQ4U/fJfzEDF7lzPLhk/w6P9/28y0iiQh3AxlWOheuZTgXA/pzuORuAu/s5B2bXHO2BlvQKZN0PfQ2HQ==",
|
||||||
|
"path": "system.foo/1.0.0",
|
||||||
|
"hashPath": "system.foo.1.0.0.nupkg.sha512"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -122,71 +117,29 @@ The files are both JSON files stored in UTF-8 encoding. Below are sample files.
|
||||||
|
|
||||||
### `runtimeOptions` Section (`.runtimeconfig.json`)
|
### `runtimeOptions` Section (`.runtimeconfig.json`)
|
||||||
|
|
||||||
This section is copied verbatim from an identical section in the input `project.json` file (with the exception of the `target` parameter which is generated by the compilation process). The `runtimeConfig` section specifies parameters to be provided to the runtime during initialization. Known parameters include:
|
This section is created when building a project. Settings include:
|
||||||
* `configProperties` - Indicates configuration properties to configure the runtime and the framework
|
* `configProperties` - Indicates configuration properties to configure the runtime and the framework
|
||||||
* Examples:
|
* Examples:
|
||||||
* Full list of [configuration properties](https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/clr-configuration-knobs.md) for CoreCLR.
|
* Full list of [configuration properties](https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/clr-configuration-knobs.md) for CoreCLR.
|
||||||
* `System.GC.Server` (old: `gcServer`) - Boolean indicating if the server GC should be used (Default: `true`).
|
* `System.GC.Server` (old: `gcServer`) - Boolean indicating if the server GC should be used (Default: `true`).
|
||||||
* `System.GC.Concurrent` (old: `gcConcurrent`) - Boolean indicating if background garbage collection should be used.
|
* `System.GC.Concurrent` (old: `gcConcurrent`) - Boolean indicating if background garbage collection should be used.
|
||||||
* `framework` - Indicates the `name`, `version`, and other properties of the shared framework to use when activating the application. The presence of this section indicates that the application is a portable app designed to use a shared redistributable framework.
|
* `framework` - Indicates the `name`, `version`, and other properties of the shared framework to use when activating the application including `applyPathes` and `rollForwardOnNoCandidateFx`. The presence of this section indicates that the application is a framework-dependent app.
|
||||||
* `applyPatches` - When `false`, the framework version is strictly obeyed by the host. When `applyPatches` is unspecified or specified as `true`, the framework from either the same or a higher version that differs only in the `SemVer` patch field will be used.
|
* `applyPatches` - When `false`, the framework version is strictly obeyed by the host. When `applyPatches` is unspecified or `true`, the framework from either the same or a higher version that differs only by the patch field will be used.
|
||||||
* For example, if `version=1.0.1` and `applyPatches` is `true`, the host would load the shared framework from `1.0.{n}`, where `n >= 1`, but will not load from `1.1.0`, even if present. When `applyPatches` is `false`, the shared framework will be loaded from `1.0.1` strictly.
|
* For example, if `version=1.0.1` and `applyPatches` is `true`, the host would load the shared framework from `1.0.{n}`, where `n >= 1`, but will not load from `1.1.0`, even if present. When `applyPatches` is `false`, the shared framework will be loaded from `1.0.1` strictly.
|
||||||
* **Note:** This does not apply to `SemVer`'s `prerelease` versions, but only for `production` releases.
|
* **Note:** This does not apply to `pre-release` versions; it applies only to `production` releases.
|
||||||
* **Note:** This section will not be used for standalone applications that do not rely upon a shared framework.
|
* **Note:** This section should not exist self-contained applications because they do not rely upon a shared framework.
|
||||||
|
* `rollForwardOnNoCandidateFx` - Determines roll-forward behavior of major and minor. Only applies to `production` releases. Values: 0(Off), 1 (roll forward on [minor]), 2 (Roll forward on [major] and [minor])
|
||||||
|
See [roll-forward-on-no-candidate documentation](https://github.com/dotnet/core-setup/blob/master/Documentation/design-docs/roll-forward-on-no-candidate-fx.md) for more information.
|
||||||
|
|
||||||
* Others _TBD_
|
These settings are read by host (apphost or dotnet executable) to determine how to initialize the runtime. All versions of the host **must ignore** settings in this section that they do not understand (thus allowing new settings to be added in later versions).
|
||||||
|
|
||||||
These settings are read by `corehost` to determine how to initialize the runtime. All versions of `corehost` **must ignore** settings in this section that they do not understand (thus allowing new settings to be added in later versions).
|
|
||||||
|
|
||||||
### `compilationOptions` Section (`.deps.json`)
|
### `compilationOptions` Section (`.deps.json`)
|
||||||
|
|
||||||
This section is copied by storing the merged `compilationOptions` from the input `project.json`. The `project.json` can define three sets of compilation options: Global, Per-Configuration, and Per-Framework. However, the `[appname].runtimeconfig.json` is specific to a configuration and framework so there is only one merged section here.
|
This section is created during build from the project's settings. The exact settings found here are specific to the compiler that produced the original application binary. Some example settings include: `defines`, `languageVersion` (e.g. the version of C# or VB), `allowUnsafe` (a C# option), etc.
|
||||||
|
|
||||||
The exact settings found here are specific to the compiler that produced the original application binary. Some example settings include: `defines`, `languageVersion` (C#/VB), `allowUnsafe` (C#), etc.
|
|
||||||
|
|
||||||
As an example, here is a possible `project.json` file:
|
|
||||||
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"compilationOptions": {
|
|
||||||
"allowUnsafe": true
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net451": {
|
|
||||||
"compilationOptions": {
|
|
||||||
"defines": [ "DESKTOP_CLR" ]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dnxcore50": {
|
|
||||||
"compilationOptions": {
|
|
||||||
"defines": [ "CORE_CLR" ]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"configurations": {
|
|
||||||
"Debug": {
|
|
||||||
"compilationOptions": {
|
|
||||||
"defines": [ "DEBUG_MODE" ]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
When this project is built for `dnxcore50` in the `Debug` configuration, the outputted `MyApp.deps.json` file will have the following `compilationOptions` section:
|
|
||||||
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"compilationOptions": {
|
|
||||||
"allowUnsafe": true,
|
|
||||||
"defines": [ "CORE_CLR", "DEBUG_MODE" ]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### `runtimeTarget` Section (`.deps.json`)
|
### `runtimeTarget` Section (`.deps.json`)
|
||||||
|
|
||||||
This property contains the name of the target from `targets` that should be used by the runtime. This is present to simplify `corehost` so that it does not have to parse or understand target names and the meaning thereof.
|
This property contains the name of the target from `targets` that should be used by the runtime. This is present to simplify the host so that it does not have to parse or understand target names and the meaning thereof.
|
||||||
|
|
||||||
### `targets` Section (`.deps.json`)
|
### `targets` Section (`.deps.json`)
|
||||||
|
|
||||||
|
@ -194,14 +147,10 @@ This section contains subsetted data from the input `project.lock.json`.
|
||||||
|
|
||||||
Each property under `targets` describes a "target", which is a collection of libraries required by the application when run or compiled in a certain framework and platform context. A target **must** specify a Framework name, and **may** specify a Runtime Identifier. Targets without Runtime Identifiers represent the dependencies and assets used for compiling the application for a particular framework. Targets with Runtime Identifiers represent the dependencies and assets used for running the application under a particular framework and on the platform defined by the Runtime Identifier. In the example above, the `.NETStandardApp,Version=v1.5` target lists the dependencies and assets used to compile the application for `dnxcore50`, and the `.NETStandardApp,Version=v1.5/osx.10.10-x64` target lists the dependencies and assets used to run the application on `dnxcore50` on a 64-bit Mac OS X 10.10 machine.
|
Each property under `targets` describes a "target", which is a collection of libraries required by the application when run or compiled in a certain framework and platform context. A target **must** specify a Framework name, and **may** specify a Runtime Identifier. Targets without Runtime Identifiers represent the dependencies and assets used for compiling the application for a particular framework. Targets with Runtime Identifiers represent the dependencies and assets used for running the application under a particular framework and on the platform defined by the Runtime Identifier. In the example above, the `.NETStandardApp,Version=v1.5` target lists the dependencies and assets used to compile the application for `dnxcore50`, and the `.NETStandardApp,Version=v1.5/osx.10.10-x64` target lists the dependencies and assets used to run the application on `dnxcore50` on a 64-bit Mac OS X 10.10 machine.
|
||||||
|
|
||||||
There will always be two targets in the `[appname].runtimeconfig.json` file: A compilation target, and a runtime target. The compilation target will be named with the framework name used for the compilation (`.NETStandardApp,Version=v1.5` in the example above). The runtime target will be named with the framework name and runtime identifier used to execute the application (`.NETStandardApp,Version=v1.5/osx.10.10-x64` in the example above). However, the runtime target will also be identified by name in the `runtimeOptions` section, so that `corehost` need not parse and understand target names.
|
There will always be two targets in the `[appname].runtimeconfig.json` file: A compilation target, and a runtime target. The compilation target will be named with the framework name used for the compilation (`.NETStandardApp,Version=v1.5` in the example above). The runtime target will be named with the framework name and runtime identifier used to execute the application (`.NETStandardApp,Version=v1.5/osx.10.10-x64` in the example above). However, the runtime target will also be identified by name in the `runtimeOptions` section, so that the host does not need to parse and understand target names.
|
||||||
|
|
||||||
The content of each target property in the JSON is a JSON object. Each property of that JSON object represents a single dependency required by the application when compiled for/run on that target. The name of the property contains the ID and Version of the dependency in the form `[Id]/[Version]`. The content of the property is another JSON object containing metadata about the dependency.
|
The content of each target property in the JSON is a JSON object. Each property of that JSON object represents a single dependency required by the application when compiled for/run on that target. The name of the property contains the ID and Version of the dependency in the form `[Id]/[Version]`. The content of the property is another JSON object containing metadata about the dependency.
|
||||||
|
|
||||||
The `type` property of a dependency object defines what kind of entity satisfied the dependency. Possible values include `project` and `package` (further comments on dependency types below).
|
|
||||||
|
|
||||||
**Open Question:** `type` is also present in the `libraries` section. We don't really need it in both. It's in both now because the lock file does that and we want the formats to be similar. Should we remove it?
|
|
||||||
|
|
||||||
The `dependencies` property of a dependency object defines the ID and Version of direct dependencies of this node. It is a JSON object where the property names are the ID of the dependency and the content of each property is the Version of the dependency.
|
The `dependencies` property of a dependency object defines the ID and Version of direct dependencies of this node. It is a JSON object where the property names are the ID of the dependency and the content of each property is the Version of the dependency.
|
||||||
|
|
||||||
The `runtime` property of a dependency object lists the relative paths to Managed Assemblies required to be available at runtime in order to satisfy this dependency. The paths are relative to the location of the Dependency (see below for further details on locating a dependency).
|
The `runtime` property of a dependency object lists the relative paths to Managed Assemblies required to be available at runtime in order to satisfy this dependency. The paths are relative to the location of the Dependency (see below for further details on locating a dependency).
|
||||||
|
@ -212,7 +161,7 @@ The `native` property of a dependency object lists the relative paths to Native
|
||||||
|
|
||||||
In compilation targets, the `runtime`, `resources` and `native` properties of a dependency are omitted, because they are not relevant to compilation. Similarly, in runtime targets, the `compile` property is omitted, because it is not relevant to runtime.
|
In compilation targets, the `runtime`, `resources` and `native` properties of a dependency are omitted, because they are not relevant to compilation. Similarly, in runtime targets, the `compile` property is omitted, because it is not relevant to runtime.
|
||||||
|
|
||||||
Only dependencies with a `type` value of `package` should be considered by `corehost`. There may be other items, used for other purposes (for example, Projects, Reference Assemblies, etc.
|
Only dependencies with a `type` value of `package` should be considered by the host. There may be other items, used for other purposes (for example, Projects, Reference Assemblies, etc.
|
||||||
|
|
||||||
### `libraries` Section (`.deps.json`)
|
### `libraries` Section (`.deps.json`)
|
||||||
|
|
||||||
|
@ -222,78 +171,27 @@ This section contains a union of all the dependencies found in the various targe
|
||||||
|
|
||||||
The file is read by two different components:
|
The file is read by two different components:
|
||||||
|
|
||||||
* `corehost` uses it to determine what to place on the TPA and Native Library Search Path lists, as well as what runtime settings to apply (GC type, etc.). See [the `corehost` spec](corehost.md).
|
* The host uses it to determine what to place on the TPA and Native Library Search Path lists, as well as what runtime settings to apply (GC type, etc.). See [the host spec](corehost.md).
|
||||||
* `Microsoft.Extensions.DependencyModel` uses it to allow a running managed application to query various data about it's dependencies. For example:
|
* `Microsoft.Extensions.DependencyModel` uses it to allow a running managed application to query various data about it's dependencies. For example:
|
||||||
* To find all dependencies that depend on a particular package (used by ASP.NET MVC and other plugin-based systems to identify assemblies that should be searched for possible plugin implementations)
|
* To find all dependencies that depend on a particular package (used by ASP.NET MVC and other plugin-based systems to identify assemblies that should be searched for possible plugin implementations)
|
||||||
* To determine the reference assemblies used by the application when it was compiled in order to allow runtime compilation to use the same reference assemblies (used by ASP.NET Razor to compile views)
|
* To determine the reference assemblies used by the application when it was compiled in order to allow runtime compilation to use the same reference assemblies (used by ASP.NET Razor to compile views)
|
||||||
* To determine the compilation settings used by the application in order to allow runtime compilation to use the same settings (also used by ASP.NET Razor views).
|
* To determine the compilation settings used by the application in order to allow runtime compilation to use the same settings (also used by ASP.NET Razor views).
|
||||||
|
|
||||||
## Opt-In Compilation Data
|
## Opt-In Compilation Data
|
||||||
|
|
||||||
Some of the sections in the `.deps.json` file contain data used for runtime compilation. This data is not provided in the file by default. Instead, a project.json setting `preserveCompilationContext` must be set to true in order to ensure this data is added. Without this setting, the `compilationOptions` will not be present in the file, and the `targets` section will contain only the runtime target. For example, if the `preserveCompilationContext` setting was not present in the `project.json` that generated the above example, the `.deps.json` file would only contain the following content:
|
Some of the sections in the `.deps.json` file contain data used for runtime compilation. This data is not provided in the file by default. Instead, a project.json setting `preserveCompilationContext` must be set to true in order to ensure this data is added. Without this setting, the `compilationOptions` will not be present in the file, and the `targets` section will contain only the runtime target.
|
||||||
|
|
||||||
```json
|
## Framework-dependent Deployment Model
|
||||||
{
|
|
||||||
"runtimeTarget": {
|
|
||||||
"name": ".NETStandardApp,Version=v1.5/osx.10.10-x64",
|
|
||||||
"portable": false
|
|
||||||
},
|
|
||||||
"targets": {
|
|
||||||
".NETStandardApp,Version=v1.5/osx.10.10-x64": {
|
|
||||||
"MyApp/1.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"AspNet.Mvc": "1.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Foo/1.0.0": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/dnxcore50/System.Foo.dll": { }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"System.Banana/1.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Foo": "1.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/dnxcore50/System.Banana.dll": { }
|
|
||||||
},
|
|
||||||
"resources": {
|
|
||||||
"lib/dnxcore50/fr-FR/System.Banana.resources.dll": { "locale": "fr-FR" }
|
|
||||||
},
|
|
||||||
"native": {
|
|
||||||
"runtimes/osx.10.10-x64/native/libbananahelper.dylib": { }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"libraries": {
|
|
||||||
"MyApp/1.0": {
|
|
||||||
"type": "project"
|
|
||||||
},
|
|
||||||
"System.Foo/1.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "[base64 string]"
|
|
||||||
},
|
|
||||||
"System.Banana/1.0": {
|
|
||||||
"type": "package",
|
|
||||||
"sha512": "[base64 string]"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
## Portable Deployment Model
|
An application can be deployed in a "framework-dependent" deployment model. In this case, the RID-specific assets of packages are published within a folder structure that preserves the RID metadata. However the host does not use this folder structure, rather it reads data from the `.deps.json` file. Also, during deployment, the `.exe` file (`apphost.exe` renamed) is not deployed by default.
|
||||||
|
|
||||||
An application can be deployed in a "portable" deployment model. In this case, the RID-specific assets of packages are published within a folder structure that preserves the RID metadata. However, `corehost` does not use this folder structure, rather it reads data from the `.deps.json` file. Also, during deployment, the `.exe` file (`corehost` renamed) is not deployed.
|
In the framework-dependent deployment model, the `*.runtimeConfig.json` file will contain the `runtimeOptions.framework` section:
|
||||||
|
|
||||||
In the portable deployment model, the `*.runtimeConfig.json` file will contain the `runtimeOptions.framework` section:
|
|
||||||
|
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"runtimeOptions": {
|
"runtimeOptions": {
|
||||||
"framework": {
|
"framework": {
|
||||||
"name": "NETCore.App",
|
"name": "Microsoft.NETCore.App",
|
||||||
"version": "1.0.1"
|
"version": "1.0.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -336,11 +234,11 @@ The shared framework's deps file will also contain a `runtimes` section defining
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
The host will have a RID embedded in it during compilation (for example, `win10-x64` for Windows 64-bit). It will look up the corresponding entry in the `runtimes` section to identify what the fallback list is for `win10-x64`. The fallbacks are identified from most-specific to least-specific. In the case of `win10-x64` and the example above, the fallback list is: `"win10-x64", "win10", "win81-x64", "win81", "win8-x64", "win8", "win7-x64", "win7", "win-x64", "win", "any", "base"` (note that an exact match on the RID itself is the first preference, followed by the first item in the fallback list, then the next item, and so on).
|
The host will detect the RID at runtime (for example, `win10-x64` for Windows 64-bit). It will look up the corresponding entry in the `runtimes` section to identify what the fallback list is for `win10-x64`. The fallbacks are identified from most-specific to least-specific. In the case of `win10-x64` and the example above, the fallback list is: `"win10-x64", "win10", "win81-x64", "win81", "win8-x64", "win8", "win7-x64", "win7", "win-x64", "win", "any", "base"` (note that an exact match on the RID itself is the first preference, followed by the first item in the fallback list, then the next item, and so on).
|
||||||
|
|
||||||
In the app-local deps file for a `portable` application, the package entries may have an additional `runtimeTargets` section detailing RID-specific assets. The `corehost` application should use this data, along with the current RID and the RID fallback data defined in the `runtimes` section of the shared framework deps file to select one **and only one** RID value out of each package individually. The most specific RID present within the package should always be selected.
|
In the app-local deps file for a `framework-dependent` application, the package entries may have an additional `runtimeTargets` section detailing RID-specific assets. The host should use this data, along with the current RID and the RID fallback data defined in the `runtimes` section of the shared framework deps file to select one **and only one** RID value out of each package individually. The most specific RID present within the package should always be selected.
|
||||||
|
|
||||||
Consider `corehost` built for `ubuntu.14.04-x64` and the following snippet from an app-local deps file (some sections removed for brevity).
|
Consider an application built for `ubuntu.14.04-x64` and the following snippet from an app-local deps file (some sections removed for brevity).
|
||||||
|
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
|
@ -389,3 +287,52 @@ When setting up the TPA and native library lists, it will do the following for t
|
||||||
Note one important aspect about asset resolution: The resolution scope is **per-package**, **not per-application**, **nor per-asset**. For each individual package, the most appropriate RID is selected, and **all** assets taken from that package must match the selected RID exactly. For example, if a package provides both a `linux-x64` and a `unix` RID (in the `ubuntu.14.04-x64` example above), **only** the `linux-x64` asset would be selected for that package. However, if a different package provides only a `unix` RID, then the asset from the `unix` RID would be selected.
|
Note one important aspect about asset resolution: The resolution scope is **per-package**, **not per-application**, **nor per-asset**. For each individual package, the most appropriate RID is selected, and **all** assets taken from that package must match the selected RID exactly. For example, if a package provides both a `linux-x64` and a `unix` RID (in the `ubuntu.14.04-x64` example above), **only** the `linux-x64` asset would be selected for that package. However, if a different package provides only a `unix` RID, then the asset from the `unix` RID would be selected.
|
||||||
|
|
||||||
The path to a runtime-specific asset is resolved in the same way as a normal asset (first check Servicing, then Package Cache, App-Local, Global Packages Location, etc.) with **one exception**. When searching app-local, rather than just looking for the simple file name in the app-local directory, a runtime-specific asset is expected to be located in a subdirectory matching the relative path information for that asset in the lock file. So the `native` `sni.dll` asset for `win7-x64` in the `System.Data.SqlClient` example above would be located at `APPROOT/runtimes/win7-x64/native/sni.dll`, rather than the normal app-local path of `APPROOT/sni.dll`.
|
The path to a runtime-specific asset is resolved in the same way as a normal asset (first check Servicing, then Package Cache, App-Local, Global Packages Location, etc.) with **one exception**. When searching app-local, rather than just looking for the simple file name in the app-local directory, a runtime-specific asset is expected to be located in a subdirectory matching the relative path information for that asset in the lock file. So the `native` `sni.dll` asset for `win7-x64` in the `System.Data.SqlClient` example above would be located at `APPROOT/runtimes/win7-x64/native/sni.dll`, rather than the normal app-local path of `APPROOT/sni.dll`.
|
||||||
|
|
||||||
|
## Opt-In [appname].runtimeconfig.json Explicit Overrides for Framework Settings
|
||||||
|
In order to address potential issues with compatibility, an application can override a framework's runtimeconfig.json settings. This should only be done with the understanding that any settings specified here have unintended consequences and may prevent future upgrade \ roll-forward compatibility. The settings include `version`, `rollForwardOnNoCandidateFx` and `applyPatches`.
|
||||||
|
|
||||||
|
As an example, assume the following framework layering:
|
||||||
|
- Application
|
||||||
|
- Microsoft.AspNetCore.All
|
||||||
|
- Microsoft.AspNetCore.App
|
||||||
|
- Microsoft.NetCore.App
|
||||||
|
|
||||||
|
Except for Microsoft.NetCore.App (since it does not have a lower-level framework), each layer has a runtimeconfig.json setting specifying a single lower-layer framework's `name`, `version` and optional `rollForwardOnNoCandidateFx` and `applyPatches`.
|
||||||
|
|
||||||
|
The normal hierarchy processing for most knobs, such as `rollForwardOnNoCandidateFx`:
|
||||||
|
- a) Default value determined by the framework (e.g. roll-forward on [Minor])
|
||||||
|
- b) Environment variable override (e.g. `DOTNET_ROLL_FORWARD_ON_NO_CANDIDATE_FX`)
|
||||||
|
- c) Each layer's `runtimeOptions` override setting in its runtimeconfig.json, starting with app (e.g. `rollForwardOnNoCandidateFx`). Lower layers can override this.
|
||||||
|
- d) The app's `additionalFrameworks` override section in `[appname].runtimeconfig.json` which specifies knobs per-framework.
|
||||||
|
- e) A `--` command line value such as `--roll-forward-on-no-candidate-fx`
|
||||||
|
|
||||||
|
In a hypothetical example, `Microsoft.AspNetCore.App` turns on the ability via mechanism `c` above to roll-forward `Microsoft.NetCore.App` on [major] releases by specifying `rollForwardOnNoCandidateFx = 2` in its runtimeconfig.json. For example:
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"runtimeOptions": {
|
||||||
|
"framework": {
|
||||||
|
"name": "Microsoft.NetCore.App",
|
||||||
|
"version": "2.2.0"
|
||||||
|
},
|
||||||
|
"rollForwardOnNoCandidateFx": "2"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
However, if that behavior is not wanted by the app, the app has the option of overriding. This cannot be done by the same mechanism `c` because the app's runtimeconfig settings would be overridden by the sample above since the sample is in a lower layer. Thus to override the setting, mechanism `d` is used. An example of the `additionalFrameworks` section for mechanism `d`:
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"runtimeOptions": {
|
||||||
|
"framework": {
|
||||||
|
"name": "Microsoft.AspNetCore.All",
|
||||||
|
"version": "1.0.1"
|
||||||
|
},
|
||||||
|
"additionalFrameworks": [
|
||||||
|
{
|
||||||
|
"name": "Microsoft.AspNetCore.App",
|
||||||
|
"rollForwardOnNoCandidateFx": "1",
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
66
README.md
66
README.md
|
@ -9,7 +9,7 @@ Looking for V1 of the .NET Core tooling?
|
||||||
|
|
||||||
If you are looking for the v2.0 release of the .NET Core tools (CLI, MSBuild and the new csproj), head over to https://dot.net/core and download!
|
If you are looking for the v2.0 release of the .NET Core tools (CLI, MSBuild and the new csproj), head over to https://dot.net/core and download!
|
||||||
|
|
||||||
> **Note:** the release/2.1.4xx branch of the CLI repo is based on an upcoming update of the SDK and is considered pre-release. For production-level usage, please use the
|
> **Note:** the release/2.2.1xx branch of the CLI repo is based on an upcoming update of the SDK and is considered pre-release. For production-level usage, please use the
|
||||||
> released version of the tools available at https://dot.net/core
|
> released version of the tools available at https://dot.net/core
|
||||||
|
|
||||||
Found an issue?
|
Found an issue?
|
||||||
|
@ -65,7 +65,7 @@ To download the .NET Core runtime **without** the SDK, visit https://github.com/
|
||||||
> want to install the latest released versions, check out the [preceding section](#looking-for-v1-of-the-net-core-tooling).
|
> want to install the latest released versions, check out the [preceding section](#looking-for-v1-of-the-net-core-tooling).
|
||||||
> In order to be able to restore these pre-release packages, you may need to add a NuGet feed pointing to https://dotnet.myget.org/F/dotnet-core/api/v3/index.json. Other feeds may also be necessary depending on what kind of project you are working with.
|
> In order to be able to restore these pre-release packages, you may need to add a NuGet feed pointing to https://dotnet.myget.org/F/dotnet-core/api/v3/index.json. Other feeds may also be necessary depending on what kind of project you are working with.
|
||||||
|
|
||||||
| Platform | Latest Daily Build<br>*release/2.1.4xx*<br>[![][version-badge]][version] |
|
| Platform | Latest Daily Build<br>*release/2.2.1xx*<br>[![][version-badge]][version] |
|
||||||
| -------- | :-------------------------------------: |
|
| -------- | :-------------------------------------: |
|
||||||
| **Windows x64** | [Installer][win-x64-installer] - [Checksum][win-x64-installer-checksum]<br>[zip][win-x64-zip] - [Checksum][win-x64-zip-checksum] |
|
| **Windows x64** | [Installer][win-x64-installer] - [Checksum][win-x64-installer-checksum]<br>[zip][win-x64-zip] - [Checksum][win-x64-zip-checksum] |
|
||||||
| **Windows x86** | [Installer][win-x86-installer] - [Checksum][win-x86-installer-checksum]<br>[zip][win-x86-zip] - [Checksum][win-x86-zip-checksum] |
|
| **Windows x86** | [Installer][win-x86-installer] - [Checksum][win-x86-installer-checksum]<br>[zip][win-x86-zip] - [Checksum][win-x86-zip-checksum] |
|
||||||
|
@ -76,7 +76,7 @@ To download the .NET Core runtime **without** the SDK, visit https://github.com/
|
||||||
| **RHEL 6** | [tar.gz][rhel-6-targz] - [Checksum][rhel-6-targz-checksum] |
|
| **RHEL 6** | [tar.gz][rhel-6-targz] - [Checksum][rhel-6-targz-checksum] |
|
||||||
| **Linux-musl** | [tar.gz][linux-musl-targz] - [Checksum][linux-musl-targz-checksum] |
|
| **Linux-musl** | [tar.gz][linux-musl-targz] - [Checksum][linux-musl-targz-checksum] |
|
||||||
|
|
||||||
| Latest Coherent Build<sup>2</sup><br>*release/2.1.4xx* |
|
| Latest Coherent Build<sup>2</sup><br>*release/2.2.1xx* |
|
||||||
|:------:|
|
|:------:|
|
||||||
| [![][coherent-version-badge]][coherent-version] |
|
| [![][coherent-version-badge]][coherent-version] |
|
||||||
|
|
||||||
|
@ -84,47 +84,47 @@ Reference notes:
|
||||||
> **1**: *Our Debian packages are put together slightly differently than the other OS specific installers. Instead of combining everything, we have separate component packages that depend on each other. If you're installing these directly from the .deb files (via dpkg or similar), then you'll need to install the [corresponding Host, Host FX Resolver, and Shared Framework packages](https://github.com/dotnet/core-setup#daily-builds) before installing the Sdk package.*
|
> **1**: *Our Debian packages are put together slightly differently than the other OS specific installers. Instead of combining everything, we have separate component packages that depend on each other. If you're installing these directly from the .deb files (via dpkg or similar), then you'll need to install the [corresponding Host, Host FX Resolver, and Shared Framework packages](https://github.com/dotnet/core-setup#daily-builds) before installing the Sdk package.*
|
||||||
> <br><br>**2**: *A 'coherent' build is defined as a build where the Runtime version matches between the CLI and Asp.NET.*
|
> <br><br>**2**: *A 'coherent' build is defined as a build where the Runtime version matches between the CLI and Asp.NET.*
|
||||||
|
|
||||||
[version]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/latest.version
|
[version]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/latest.version
|
||||||
[coherent-version]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/latest.coherent.version
|
[coherent-version]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/latest.coherent.version
|
||||||
[comment]: # (The latest versions are always the same across all platforms. Just need one to show, so picking win-x64's svg.)
|
[comment]: # (The latest versions are always the same across all platforms. Just need one to show, so picking win-x64's svg.)
|
||||||
[version-badge]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/win_x64_Release_version_badge.svg
|
[version-badge]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/win_x64_Release_version_badge.svg
|
||||||
[coherent-version-badge]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/win_x64_Release_coherent_badge.svg
|
[coherent-version-badge]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/win_x64_Release_coherent_badge.svg
|
||||||
|
|
||||||
[win-x64-installer]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-win-x64.exe
|
[win-x64-installer]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-win-x64.exe
|
||||||
[win-x64-installer-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-win-x64.exe.sha
|
[win-x64-installer-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-win-x64.exe.sha
|
||||||
[win-x64-zip]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-win-x64.zip
|
[win-x64-zip]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-win-x64.zip
|
||||||
[win-x64-zip-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-win-x64.zip.sha
|
[win-x64-zip-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-win-x64.zip.sha
|
||||||
|
|
||||||
[win-x86-installer]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-win-x86.exe
|
[win-x86-installer]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-win-x86.exe
|
||||||
[win-x86-installer-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-win-x86.exe.sha
|
[win-x86-installer-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-win-x86.exe.sha
|
||||||
[win-x86-zip]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-win-x86.zip
|
[win-x86-zip]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-win-x86.zip
|
||||||
[win-x86-zip-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-win-x86.zip.sha
|
[win-x86-zip-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-win-x86.zip.sha
|
||||||
|
|
||||||
[osx-installer]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-osx-x64.pkg
|
[osx-installer]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-osx-x64.pkg
|
||||||
[osx-installer-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-osx-x64.pkg.sha
|
[osx-installer-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-osx-x64.pkg.sha
|
||||||
[osx-targz]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-osx-x64.tar.gz
|
[osx-targz]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-osx-x64.tar.gz
|
||||||
[osx-targz-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-osx-x64.tar.gz.sha
|
[osx-targz-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-osx-x64.tar.gz.sha
|
||||||
|
|
||||||
[linux-targz]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-linux-x64.tar.gz
|
[linux-targz]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-linux-x64.tar.gz
|
||||||
[linux-targz-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-linux-x64.tar.gz.sha
|
[linux-targz-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-linux-x64.tar.gz.sha
|
||||||
|
|
||||||
[linux-arm-targz]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-linux-arm.tar.gz
|
[linux-arm-targz]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-linux-arm.tar.gz
|
||||||
[linux-arm-targz-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-linux-arm.tar.gz.sha
|
[linux-arm-targz-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-linux-arm.tar.gz.sha
|
||||||
|
|
||||||
[linux-arm64-targz]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-linux-arm64.tar.gz
|
[linux-arm64-targz]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-linux-arm64.tar.gz
|
||||||
[linux-arm64-targz-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-linux-arm64.tar.gz.sha
|
[linux-arm64-targz-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-linux-arm64.tar.gz.sha
|
||||||
|
|
||||||
[linux-DEB-installer]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-x64.deb
|
[linux-DEB-installer]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-x64.deb
|
||||||
[linux-DEB-installer-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-x64.deb.sha
|
[linux-DEB-installer-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-x64.deb.sha
|
||||||
|
|
||||||
[linux-RPM-installer]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-x64.rpm
|
[linux-RPM-installer]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-x64.rpm
|
||||||
[linux-RPM-installer-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-x64.rpm.sha
|
[linux-RPM-installer-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-x64.rpm.sha
|
||||||
|
|
||||||
[rhel-6-targz]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-rhel.6-x64.tar.gz
|
[rhel-6-targz]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-rhel.6-x64.tar.gz
|
||||||
[rhel-6-targz-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.1.4xx/dotnet-sdk-latest-rhel.6-x64.tar.gz.sha
|
[rhel-6-targz-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-rhel.6-x64.tar.gz.sha
|
||||||
|
|
||||||
[linux-musl-targz]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.1.3xx/dotnet-sdk-latest-linux-musl-x64.tar.gz
|
[linux-musl-targz]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-linux-musl-x64.tar.gz
|
||||||
[linux-musl-targz-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.1.3xx/dotnet-sdk-latest-linux-musl-x64.tar.gz.sha
|
[linux-musl-targz-checksum]: https://dotnetclichecksums.blob.core.windows.net/dotnet/Sdk/release/2.2.1xx/dotnet-sdk-latest-linux-musl-x64.tar.gz.sha
|
||||||
|
|
||||||
# Debian daily feed
|
# Debian daily feed
|
||||||
|
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFrameworks>netcoreapp2.1;net451</TargetFrameworks>
|
<TargetFrameworks>netcoreapp2.2;net451</TargetFrameworks>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<AssetTargetFallback Condition=" '$(TargetFramework)' == 'netcoreapp2.1' ">$(AssetTargetFallback);portable-net45+win8;dnxcore50</AssetTargetFallback>
|
<AssetTargetFallback Condition=" '$(TargetFramework)' == 'netcoreapp2.2' ">$(AssetTargetFallback);portable-net45+win8;dnxcore50</AssetTargetFallback>
|
||||||
<RuntimeIdentifiers>win7-x64;win7-x86;osx.10.10-x64;osx.10.11-x64;ubuntu.14.04-x64;ubuntu.16.04-x64;ubuntu.16.10-x64;centos.7-x64;rhel.7.2-x64;debian.8-x64;fedora.24-x64;opensuse.42.1-x64</RuntimeIdentifiers>
|
<RuntimeIdentifiers>win7-x64;win7-x86;osx.10.10-x64;osx.10.11-x64;ubuntu.14.04-x64;ubuntu.16.04-x64;ubuntu.16.10-x64;centos.7-x64;rhel.7.2-x64;debian.8-x64;fedora.24-x64;opensuse.42.1-x64</RuntimeIdentifiers>
|
||||||
<RestoreAdditionalProjectSources Condition="'$(TEST_PACKAGES)' != ''">$(TEST_PACKAGES)</RestoreAdditionalProjectSources>
|
<RestoreAdditionalProjectSources Condition="'$(TEST_PACKAGES)' != ''">$(TEST_PACKAGES)</RestoreAdditionalProjectSources>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFrameworks>net461;netcoreapp2.1</TargetFrameworks>
|
<TargetFrameworks>net461;netcoreapp2.2</TargetFrameworks>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFrameworks>netcoreapp2.1;net461</TargetFrameworks>
|
<TargetFrameworks>netcoreapp2.2;net461</TargetFrameworks>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
<AssemblyName>dotnet-tool-with-output-name</AssemblyName>
|
<AssemblyName>dotnet-tool-with-output-name</AssemblyName>
|
||||||
<PackageId>ToolWithOutputName</PackageId>
|
<PackageId>ToolWithOutputName</PackageId>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<VersionPrefix>1.0.0-rc</VersionPrefix>
|
<VersionPrefix>1.0.0-rc</VersionPrefix>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<VersionPrefix>1.0.0-rc</VersionPrefix>
|
<VersionPrefix>1.0.0-rc</VersionPrefix>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<VersionSuffix></VersionSuffix>
|
<VersionSuffix></VersionSuffix>
|
||||||
<DisableImplicitFrameworkReferences>false</DisableImplicitFrameworkReferences>
|
<DisableImplicitFrameworkReferences>false</DisableImplicitFrameworkReferences>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
<AssemblyName>dotnet-fallbackfoldertool</AssemblyName>
|
<AssemblyName>dotnet-fallbackfoldertool</AssemblyName>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<VersionSuffix></VersionSuffix>
|
<VersionSuffix></VersionSuffix>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<Version>1.0.0</Version>
|
<Version>1.0.0</Version>
|
||||||
<!--Workaround for https://github.com/NuGet/Home/issues/4583-->
|
<!--Workaround for https://github.com/NuGet/Home/issues/4583-->
|
||||||
<VersionSuffix></VersionSuffix>
|
<VersionSuffix></VersionSuffix>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
<AssemblyName>dotnet-hello</AssemblyName>
|
<AssemblyName>dotnet-hello</AssemblyName>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<RuntimeIdentifiers>win7-x64;win7-x86;osx.10.10-x64;osx.10.11-x64;ubuntu.14.04-x64;ubuntu.16.04-x64;ubuntu.16.10-x64;centos.7-x64;rhel.7.2-x64;debian.8-x64;fedora.24-x64;opensuse.42.1-x64</RuntimeIdentifiers>
|
<RuntimeIdentifiers>win7-x64;win7-x86;osx.10.10-x64;osx.10.11-x64;ubuntu.14.04-x64;ubuntu.16.04-x64;ubuntu.16.10-x64;centos.7-x64;rhel.7.2-x64;debian.8-x64;fedora.24-x64;opensuse.42.1-x64</RuntimeIdentifiers>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<Version>2.0.0</Version>
|
<Version>2.0.0</Version>
|
||||||
<!--Workaround for https://github.com/NuGet/Home/issues/4583-->
|
<!--Workaround for https://github.com/NuGet/Home/issues/4583-->
|
||||||
<VersionSuffix></VersionSuffix>
|
<VersionSuffix></VersionSuffix>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
<AssemblyName>dotnet-hello</AssemblyName>
|
<AssemblyName>dotnet-hello</AssemblyName>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<RuntimeIdentifiers>win7-x64;win7-x86;osx.10.10-x64;osx.10.11-x64;ubuntu.14.04-x64;ubuntu.16.04-x64;ubuntu.16.10-x64;centos.7-x64;rhel.7.2-x64;debian.8-x64;fedora.24-x64;opensuse.42.1-x64</RuntimeIdentifiers>
|
<RuntimeIdentifiers>win7-x64;win7-x86;osx.10.10-x64;osx.10.11-x64;ubuntu.14.04-x64;ubuntu.16.04-x64;ubuntu.16.10-x64;centos.7-x64;rhel.7.2-x64;debian.8-x64;fedora.24-x64;opensuse.42.1-x64</RuntimeIdentifiers>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<VersionSuffix></VersionSuffix>
|
<VersionSuffix></VersionSuffix>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
|
@ -3,6 +3,6 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
<RuntimeIdentifiers>win7-x64;win7-x86;osx.10.12-x64;ubuntu.14.04-x64;ubuntu.16.04-x64;ubuntu.16.10-x64;rhel.6-x64;centos.7-x64;rhel.7-x64;debian.8-x64;fedora.24-x64;opensuse.42.1-x64;linux-musl-x64</RuntimeIdentifiers>
|
<RuntimeIdentifiers>win7-x64;win7-x86;osx.10.12-x64;ubuntu.14.04-x64;ubuntu.16.04-x64;ubuntu.16.10-x64;rhel.6-x64;centos.7-x64;rhel.7-x64;debian.8-x64;fedora.24-x64;opensuse.42.1-x64;linux-musl-x64</RuntimeIdentifiers>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<RestoreAdditionalProjectSources Condition="'$(TEST_PACKAGES)' != ''">$(TEST_PACKAGES)</RestoreAdditionalProjectSources>
|
<RestoreAdditionalProjectSources Condition="'$(TEST_PACKAGES)' != ''">$(TEST_PACKAGES)</RestoreAdditionalProjectSources>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<RestoreAdditionalProjectSources Condition="'$(TEST_PACKAGES)' != ''">$(TEST_PACKAGES)</RestoreAdditionalProjectSources>
|
<RestoreAdditionalProjectSources Condition="'$(TEST_PACKAGES)' != ''">$(TEST_PACKAGES)</RestoreAdditionalProjectSources>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<VersionPrefix>1.0.0</VersionPrefix>
|
<VersionPrefix>1.0.0</VersionPrefix>
|
||||||
<TargetFrameworks>netcoreapp2.1</TargetFrameworks>
|
<TargetFrameworks>netcoreapp2.2</TargetFrameworks>
|
||||||
<AssemblyName>AppWithDirectDep</AssemblyName>
|
<AssemblyName>AppWithDirectDep</AssemblyName>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
|
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<RestoreAdditionalProjectSources Condition="'$(TEST_PACKAGES)' != ''">$(TEST_PACKAGES)</RestoreAdditionalProjectSources>
|
<RestoreAdditionalProjectSources Condition="'$(TEST_PACKAGES)' != ''">$(TEST_PACKAGES)</RestoreAdditionalProjectSources>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<RestoreAdditionalProjectSources Condition="'$(TEST_PACKAGES)' != ''">$(TEST_PACKAGES)</RestoreAdditionalProjectSources>
|
<RestoreAdditionalProjectSources Condition="'$(TEST_PACKAGES)' != ''">$(TEST_PACKAGES)</RestoreAdditionalProjectSources>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
<RuntimeIdentifiers>win7-x64;win7-x86;osx.10.12-x64;ubuntu.14.04-x64;ubuntu.16.04-x64;ubuntu.16.10-x64;rhel.6-x64;centos.7-x64;rhel.7-x64;debian.8-x64;fedora.24-x64;opensuse.42.1-x64;linux-musl-x64</RuntimeIdentifiers>
|
<RuntimeIdentifiers>win7-x64;win7-x86;osx.10.12-x64;ubuntu.14.04-x64;ubuntu.16.04-x64;ubuntu.16.10-x64;rhel.6-x64;centos.7-x64;rhel.7-x64;debian.8-x64;fedora.24-x64;opensuse.42.1-x64;linux-musl-x64</RuntimeIdentifiers>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
<RuntimeIdentifiers>win7-x64;win7-x86;osx.10.12-x64;ubuntu.14.04-x64;ubuntu.16.04-x64;ubuntu.16.10-x64;rhel.6-x64;centos.7-x64;rhel.7-x64;debian.8-x64;fedora.24-x64;opensuse.42.1-x64;linux-musl-x64</RuntimeIdentifiers>
|
<RuntimeIdentifiers>win7-x64;win7-x86;osx.10.12-x64;ubuntu.14.04-x64;ubuntu.16.04-x64;ubuntu.16.10-x64;rhel.6-x64;centos.7-x64;rhel.7-x64;debian.8-x64;fedora.24-x64;opensuse.42.1-x64;linux-musl-x64</RuntimeIdentifiers>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFrameworks>net451;netcoreapp2.1</TargetFrameworks>
|
<TargetFrameworks>net451;netcoreapp2.2</TargetFrameworks>
|
||||||
<RestoreAdditionalProjectSources Condition="'$(TEST_PACKAGES)' != ''">$(TEST_PACKAGES)</RestoreAdditionalProjectSources>
|
<RestoreAdditionalProjectSources Condition="'$(TEST_PACKAGES)' != ''">$(TEST_PACKAGES)</RestoreAdditionalProjectSources>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@
|
||||||
<PackageReference Include="dotnet-desktop-and-portable" Version="1.0.0-*" />
|
<PackageReference Include="dotnet-desktop-and-portable" Version="1.0.0-*" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.1' ">
|
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.2' ">
|
||||||
<PackageReference Include="Microsoft.NETCore.App" Version="$(MicrosoftNETCoreAppPackageVersion)" />
|
<PackageReference Include="Microsoft.NETCore.App" Version="$(MicrosoftNETCoreAppPackageVersion)" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<RestoreAdditionalProjectSources Condition="'$(TEST_PACKAGES)' != ''">$(TEST_PACKAGES)</RestoreAdditionalProjectSources>
|
<RestoreAdditionalProjectSources Condition="'$(TEST_PACKAGES)' != ''">$(TEST_PACKAGES)</RestoreAdditionalProjectSources>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<VersionPrefix>1.0.0</VersionPrefix>
|
<VersionPrefix>1.0.0</VersionPrefix>
|
||||||
<TargetFrameworks>netcoreapp2.1</TargetFrameworks>
|
<TargetFrameworks>netcoreapp2.2</TargetFrameworks>
|
||||||
<AssemblyName>DependencyContextFromTool</AssemblyName>
|
<AssemblyName>DependencyContextFromTool</AssemblyName>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
|
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<!-- Issue: https://github.com/dotnet/sdk/issues/1150 -->
|
<!-- Issue: https://github.com/dotnet/sdk/issues/1150 -->
|
||||||
<DisableImplicitAssetTargetFallback>true</DisableImplicitAssetTargetFallback>
|
<DisableImplicitAssetTargetFallback>true</DisableImplicitAssetTargetFallback>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFrameworks>net451;netcoreapp2.1</TargetFrameworks>
|
<TargetFrameworks>net451;netcoreapp2.2</TargetFrameworks>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
|
@ -3,14 +3,14 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFrameworks>net451;netcoreapp2.1</TargetFrameworks>
|
<TargetFrameworks>net451;netcoreapp2.2</TargetFrameworks>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="dotnet-desktop-and-portable" Version="1.0.0-*" />
|
<PackageReference Include="dotnet-desktop-and-portable" Version="1.0.0-*" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.1' ">
|
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.2' ">
|
||||||
<PackageReference Include="Microsoft.NETCore.App" Version="$(MicrosoftNETCoreAppPackageVersion)" />
|
<PackageReference Include="Microsoft.NETCore.App" Version="$(MicrosoftNETCoreAppPackageVersion)" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
<RuntimeIdentifiers>win7-x64;win7-x86;osx.10.12-x64;ubuntu.14.04-x64;ubuntu.16.04-x64;ubuntu.16.10-x64;rhel.6-x64;centos.7-x64;rhel.7-x64;debian.8-x64;fedora.24-x64;opensuse.42.1-x64;linux-musl-x64</RuntimeIdentifiers>
|
<RuntimeIdentifiers>win7-x64;win7-x86;osx.10.12-x64;ubuntu.14.04-x64;ubuntu.16.04-x64;ubuntu.16.10-x64;rhel.6-x64;centos.7-x64;rhel.7-x64;debian.8-x64;fedora.24-x64;opensuse.42.1-x64;linux-musl-x64</RuntimeIdentifiers>
|
||||||
<RestoreAdditionalProjectSources Condition="'$(TEST_PACKAGES)' != ''">$(TEST_PACKAGES)</RestoreAdditionalProjectSources>
|
<RestoreAdditionalProjectSources Condition="'$(TEST_PACKAGES)' != ''">$(TEST_PACKAGES)</RestoreAdditionalProjectSources>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Project>
|
</Project>
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
<RestoreAdditionalProjectSources Condition="'$(TEST_PACKAGES)' != ''">$(TEST_PACKAGES)</RestoreAdditionalProjectSources>
|
<RestoreAdditionalProjectSources Condition="'$(TEST_PACKAGES)' != ''">$(TEST_PACKAGES)</RestoreAdditionalProjectSources>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFrameworks>net46;netcoreapp2.1</TargetFrameworks>
|
<TargetFrameworks>net46;netcoreapp2.2</TargetFrameworks>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup Condition="'$(TargetFramework)' == 'net46'">
|
<PropertyGroup Condition="'$(TargetFramework)' == 'net46'">
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFrameworks>net46;netcoreapp2.1</TargetFrameworks>
|
<TargetFrameworks>net46;netcoreapp2.2</TargetFrameworks>
|
||||||
<RuntimeIdentifiers>win7-x86</RuntimeIdentifiers>
|
<RuntimeIdentifiers>win7-x86</RuntimeIdentifiers>
|
||||||
<RuntimeIdentifier Condition=" '$(TargetFramework)' == 'net46' ">win7-x86</RuntimeIdentifier>
|
<RuntimeIdentifier Condition=" '$(TargetFramework)' == 'net46' ">win7-x86</RuntimeIdentifier>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
@ -11,7 +11,7 @@
|
||||||
<DefineConstants>DESKTOP;$(DefineConstants)</DefineConstants>
|
<DefineConstants>DESKTOP;$(DefineConstants)</DefineConstants>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp2.1'">
|
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp2.2'">
|
||||||
<PackageReference Include="Microsoft.NETCore.App" Version="$(MicrosoftNETCoreAppPackageVersion)" />
|
<PackageReference Include="Microsoft.NETCore.App" Version="$(MicrosoftNETCoreAppPackageVersion)" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Channel>release/2.1.4xx</Channel>
|
<Channel>release/2.2.1xx</Channel>
|
||||||
<BranchName>release/2.1.4xx</BranchName>
|
<BranchName>release/2.2.1xx</BranchName>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<BundledTemplate Include="Microsoft.DotNet.Test.ProjectTemplates.2.1" Version="$(MicrosoftDotNetTestProjectTemplates20PackageVersion)" />
|
<BundledTemplate Include="Microsoft.DotNet.Test.ProjectTemplates.2.1" Version="$(MicrosoftDotNetTestProjectTemplates20PackageVersion)" />
|
||||||
|
|
||||||
<BundledTemplate Include="Microsoft.DotNet.Web.ItemTemplates" Version="$(AspNetCoreVersion)" />
|
<BundledTemplate Include="Microsoft.DotNet.Web.ItemTemplates" Version="$(AspNetCoreVersion)" />
|
||||||
<BundledTemplate Include="Microsoft.DotNet.Web.ProjectTemplates.2.1" Version="$(AspNetCoreVersion)" />
|
<BundledTemplate Include="Microsoft.DotNet.Web.ProjectTemplates.2.2" Version="$(AspNetCoreVersion)" />
|
||||||
<BundledTemplate Include="Microsoft.DotNet.Web.Spa.ProjectTemplates" Version="$(AspNetCoreVersion)" />
|
<BundledTemplate Include="Microsoft.DotNet.Web.Spa.ProjectTemplates" Version="$(AspNetCoreVersion)" />
|
||||||
|
|
||||||
<BundledTemplate Include="NUnit3.DotNetNew.Template" Version="$(NUnit3TemplatesVersion)" />
|
<BundledTemplate Include="NUnit3.DotNetNew.Template" Version="$(NUnit3TemplatesVersion)" />
|
||||||
|
|
|
@ -1,8 +1,11 @@
|
||||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<RuntimeNETCoreAppPackageName>runtime.$(SharedFrameworkRid).microsoft.netcore.app</RuntimeNETCoreAppPackageName>
|
<RuntimeNETCoreAppPackageName>runtime.$(SharedFrameworkRid).microsoft.netcore.app</RuntimeNETCoreAppPackageName>
|
||||||
<CrossgenPath>$(NuGetPackagesDir)/$(RuntimeNETCoreAppPackageName)/$(MicrosoftNETCoreAppPackageVersion)/tools/crossgen$(ExeExtension)</CrossgenPath>
|
<_crossDir Condition="'$(Architecture)' == 'arm64'">/x64_arm64</_crossDir>
|
||||||
<LibCLRJitPath>$(NuGetPackagesDir)/$(RuntimeNETCoreAppPackageName)/$(MicrosoftNETCoreAppPackageVersion)/runtimes/$(SharedFrameworkRid)/native/$(DynamicLibPrefix)clrjit$(DynamicLibExtension)</LibCLRJitPath>
|
<CrossgenPath>$(NuGetPackagesDir)/$(RuntimeNETCoreAppPackageName)/$(MicrosoftNETCoreAppPackageVersion)/tools$(_crossDir)/crossgen$(ExeExtension)</CrossgenPath>
|
||||||
|
<LibCLRJitRid Condition="'$(Architecture)' != 'arm64'">$(SharedFrameworkRid)</LibCLRJitRid>
|
||||||
|
<LibCLRJitRid Condition="'$(Architecture)' == 'arm64'">x64_arm64</LibCLRJitRid>
|
||||||
|
<LibCLRJitPath>$(NuGetPackagesDir)/$(RuntimeNETCoreAppPackageName)/$(MicrosoftNETCoreAppPackageVersion)/runtimes/$(LibCLRJitRid)/native/$(DynamicLibPrefix)clrjit$(DynamicLibExtension)</LibCLRJitPath>
|
||||||
<SharedFrameworkNameVersionPath>$(OutputDirectory)/shared/$(SharedFrameworkName)/$(MicrosoftNETCoreAppPackageVersion)</SharedFrameworkNameVersionPath>
|
<SharedFrameworkNameVersionPath>$(OutputDirectory)/shared/$(SharedFrameworkName)/$(MicrosoftNETCoreAppPackageVersion)</SharedFrameworkNameVersionPath>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<MicrosoftAspNetCoreAllPackageVersion>2.1.2</MicrosoftAspNetCoreAllPackageVersion>
|
<MicrosoftAspNetCoreAllPackageVersion>2.2.0-preview1-34355</MicrosoftAspNetCoreAllPackageVersion>
|
||||||
<MicrosoftAspNetCoreAppPackageVersion>$(MicrosoftAspNetCoreAllPackageVersion)</MicrosoftAspNetCoreAppPackageVersion>
|
<MicrosoftAspNetCoreAppPackageVersion>$(MicrosoftAspNetCoreAllPackageVersion)</MicrosoftAspNetCoreAppPackageVersion>
|
||||||
<MicrosoftAspNetCoreDeveloperCertificatesXPlatPackageVersion>2.1.1</MicrosoftAspNetCoreDeveloperCertificatesXPlatPackageVersion>
|
<MicrosoftAspNetCoreDeveloperCertificatesXPlatPackageVersion>2.1.1</MicrosoftAspNetCoreDeveloperCertificatesXPlatPackageVersion>
|
||||||
<MicrosoftAspNetCoreMvcPackageVersion>2.1.1</MicrosoftAspNetCoreMvcPackageVersion>
|
<MicrosoftAspNetCoreMvcPackageVersion>2.1.1</MicrosoftAspNetCoreMvcPackageVersion>
|
||||||
|
@ -10,7 +10,7 @@
|
||||||
<DotnetSqlCachePackageVersion>2.1.1</DotnetSqlCachePackageVersion>
|
<DotnetSqlCachePackageVersion>2.1.1</DotnetSqlCachePackageVersion>
|
||||||
<DotnetUserSecretsPackageVersion>2.1.1</DotnetUserSecretsPackageVersion>
|
<DotnetUserSecretsPackageVersion>2.1.1</DotnetUserSecretsPackageVersion>
|
||||||
<DotnetWatchPackageVersion>2.1.1</DotnetWatchPackageVersion>
|
<DotnetWatchPackageVersion>2.1.1</DotnetWatchPackageVersion>
|
||||||
<MicrosoftNETCoreAppPackageVersion>2.1.2</MicrosoftNETCoreAppPackageVersion>
|
<MicrosoftNETCoreAppPackageVersion>2.2.0-preview1-26609-02</MicrosoftNETCoreAppPackageVersion>
|
||||||
<MicrosoftNETCoreDotNetHostResolverPackageVersion>$(MicrosoftNETCoreAppPackageVersion)</MicrosoftNETCoreDotNetHostResolverPackageVersion>
|
<MicrosoftNETCoreDotNetHostResolverPackageVersion>$(MicrosoftNETCoreAppPackageVersion)</MicrosoftNETCoreDotNetHostResolverPackageVersion>
|
||||||
<MicrosoftBuildPackageVersion>15.8.0-preview-000160</MicrosoftBuildPackageVersion>
|
<MicrosoftBuildPackageVersion>15.8.0-preview-000160</MicrosoftBuildPackageVersion>
|
||||||
<MicrosoftBuildFrameworkPackageVersion>$(MicrosoftBuildPackageVersion)</MicrosoftBuildFrameworkPackageVersion>
|
<MicrosoftBuildFrameworkPackageVersion>$(MicrosoftBuildPackageVersion)</MicrosoftBuildFrameworkPackageVersion>
|
||||||
|
@ -23,7 +23,7 @@
|
||||||
<MicrosoftNETCoreCompilersPackageVersion>$(MicrosoftCodeAnalysisCSharpPackageVersion)</MicrosoftNETCoreCompilersPackageVersion>
|
<MicrosoftNETCoreCompilersPackageVersion>$(MicrosoftCodeAnalysisCSharpPackageVersion)</MicrosoftNETCoreCompilersPackageVersion>
|
||||||
<MicrosoftCodeAnalysisBuildTasksPackageVersion>$(MicrosoftCodeAnalysisCSharpPackageVersion)</MicrosoftCodeAnalysisBuildTasksPackageVersion>
|
<MicrosoftCodeAnalysisBuildTasksPackageVersion>$(MicrosoftCodeAnalysisCSharpPackageVersion)</MicrosoftCodeAnalysisBuildTasksPackageVersion>
|
||||||
<MicrosoftNetCompilersNetcorePackageVersion>$(MicrosoftCodeAnalysisCSharpPackageVersion)</MicrosoftNetCompilersNetcorePackageVersion>
|
<MicrosoftNetCompilersNetcorePackageVersion>$(MicrosoftCodeAnalysisCSharpPackageVersion)</MicrosoftNetCompilersNetcorePackageVersion>
|
||||||
<MicrosoftNETSdkPackageVersion>2.1.400-preview-63118-01</MicrosoftNETSdkPackageVersion>
|
<MicrosoftNETSdkPackageVersion>2.2.100-preview1-63118-02</MicrosoftNETSdkPackageVersion>
|
||||||
<MicrosoftNETBuildExtensionsPackageVersion>$(MicrosoftNETSdkPackageVersion)</MicrosoftNETBuildExtensionsPackageVersion>
|
<MicrosoftNETBuildExtensionsPackageVersion>$(MicrosoftNETSdkPackageVersion)</MicrosoftNETBuildExtensionsPackageVersion>
|
||||||
<MicrosoftNETSdkRazorPackageVersion>2.1.1</MicrosoftNETSdkRazorPackageVersion>
|
<MicrosoftNETSdkRazorPackageVersion>2.1.1</MicrosoftNETSdkRazorPackageVersion>
|
||||||
<MicrosoftNETSdkWebPackageVersion>2.1.400-preview1-20180705-1834985</MicrosoftNETSdkWebPackageVersion>
|
<MicrosoftNETSdkWebPackageVersion>2.1.400-preview1-20180705-1834985</MicrosoftNETSdkWebPackageVersion>
|
||||||
|
@ -37,8 +37,8 @@
|
||||||
<MicrosoftTemplateEngineCliLocalizationPackageVersion>$(MicrosoftTemplateEngineCliPackageVersion)</MicrosoftTemplateEngineCliLocalizationPackageVersion>
|
<MicrosoftTemplateEngineCliLocalizationPackageVersion>$(MicrosoftTemplateEngineCliPackageVersion)</MicrosoftTemplateEngineCliLocalizationPackageVersion>
|
||||||
<MicrosoftTemplateEngineOrchestratorRunnableProjectsPackageVersion>$(MicrosoftTemplateEngineCliPackageVersion)</MicrosoftTemplateEngineOrchestratorRunnableProjectsPackageVersion>
|
<MicrosoftTemplateEngineOrchestratorRunnableProjectsPackageVersion>$(MicrosoftTemplateEngineCliPackageVersion)</MicrosoftTemplateEngineOrchestratorRunnableProjectsPackageVersion>
|
||||||
<MicrosoftTemplateEngineUtilsPackageVersion>$(MicrosoftTemplateEngineCliPackageVersion)</MicrosoftTemplateEngineUtilsPackageVersion>
|
<MicrosoftTemplateEngineUtilsPackageVersion>$(MicrosoftTemplateEngineCliPackageVersion)</MicrosoftTemplateEngineUtilsPackageVersion>
|
||||||
<MicrosoftDotNetPlatformAbstractionsPackageVersion>2.1.0</MicrosoftDotNetPlatformAbstractionsPackageVersion>
|
<MicrosoftDotNetPlatformAbstractionsPackageVersion>2.2.0-preview1-26609-02</MicrosoftDotNetPlatformAbstractionsPackageVersion>
|
||||||
<MicrosoftExtensionsDependencyModelPackageVersion>2.1.0</MicrosoftExtensionsDependencyModelPackageVersion>
|
<MicrosoftExtensionsDependencyModelPackageVersion>2.2.0-preview1-26609-02</MicrosoftExtensionsDependencyModelPackageVersion>
|
||||||
<MicrosoftDotNetCliCommandLinePackageVersion>0.1.1</MicrosoftDotNetCliCommandLinePackageVersion>
|
<MicrosoftDotNetCliCommandLinePackageVersion>0.1.1</MicrosoftDotNetCliCommandLinePackageVersion>
|
||||||
<MicrosoftDotNetProjectJsonMigrationPackageVersion>1.3.1</MicrosoftDotNetProjectJsonMigrationPackageVersion>
|
<MicrosoftDotNetProjectJsonMigrationPackageVersion>1.3.1</MicrosoftDotNetProjectJsonMigrationPackageVersion>
|
||||||
<MicrosoftDotNetToolsMigrateCommandPackageVersion>$(MicrosoftDotNetProjectJsonMigrationPackageVersion)</MicrosoftDotNetToolsMigrateCommandPackageVersion>
|
<MicrosoftDotNetToolsMigrateCommandPackageVersion>$(MicrosoftDotNetProjectJsonMigrationPackageVersion)</MicrosoftDotNetToolsMigrateCommandPackageVersion>
|
||||||
|
|
|
@ -137,7 +137,7 @@
|
||||||
So that we don't need to manually update the version selection logic between when we ship a final release and when we ship the first patch
|
So that we don't need to manually update the version selection logic between when we ship a final release and when we ship the first patch
|
||||||
-->
|
-->
|
||||||
<GetUseBundledNETCoreAppPackageVersionAsDefaultNetCorePatchVersion
|
<GetUseBundledNETCoreAppPackageVersionAsDefaultNetCorePatchVersion
|
||||||
BundledNETCoreAppPackageVersion="$(BundledNETCoreAppPackageVersion)">
|
BundledNETCoreAppPackageVersion="$(_NETCoreAppPackageVersion)">
|
||||||
<Output TaskParameter="UseBundledNETCoreAppPackageVersionAsDefaultNetCorePatchVersion"
|
<Output TaskParameter="UseBundledNETCoreAppPackageVersionAsDefaultNetCorePatchVersion"
|
||||||
PropertyName="_UseBundledNETCoreAppPackageVersionAsDefaultNetCorePatchVersion" />
|
PropertyName="_UseBundledNETCoreAppPackageVersionAsDefaultNetCorePatchVersion" />
|
||||||
</GetUseBundledNETCoreAppPackageVersionAsDefaultNetCorePatchVersion>
|
</GetUseBundledNETCoreAppPackageVersionAsDefaultNetCorePatchVersion>
|
||||||
|
|
|
@ -20,7 +20,9 @@
|
||||||
<![CDATA[
|
<![CDATA[
|
||||||
<add key="myget-vstest" value="https://dotnet.myget.org/F/vstest/api/v3/index.json" />
|
<add key="myget-vstest" value="https://dotnet.myget.org/F/vstest/api/v3/index.json" />
|
||||||
<add key="BlobFeed" value="https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json" />
|
<add key="BlobFeed" value="https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json" />
|
||||||
|
<add key="aspnetcore-release" value="https://dotnet.myget.org/F/aspnetcore-release/api/v3/index.json" />
|
||||||
<add key="aspnetcore-dev" value="https://dotnet.myget.org/F/aspnetcore-dev/api/v3/index.json" />
|
<add key="aspnetcore-dev" value="https://dotnet.myget.org/F/aspnetcore-dev/api/v3/index.json" />
|
||||||
|
<add key="dotnet-core" value="https://dotnet.myget.org/F/dotnet-core/api/v3/index.json" />
|
||||||
<add key="templating" value="https://dotnet.myget.org/F/templating/api/v3/index.json" />
|
<add key="templating" value="https://dotnet.myget.org/F/templating/api/v3/index.json" />
|
||||||
<add key="websdk" value="https://dotnet.myget.org/F/dotnet-web/api/v3/index.json" />
|
<add key="websdk" value="https://dotnet.myget.org/F/dotnet-web/api/v3/index.json" />
|
||||||
<add key="roslyn" value="https://dotnet.myget.org/f/roslyn/api/v3/index.json" />
|
<add key="roslyn" value="https://dotnet.myget.org/f/roslyn/api/v3/index.json" />
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
<RoslynDirectory>$(SdkOutputDirectory)/Roslyn</RoslynDirectory>
|
<RoslynDirectory>$(SdkOutputDirectory)/Roslyn</RoslynDirectory>
|
||||||
<FSharpDirectory>$(SdkOutputDirectory)/FSharp</FSharpDirectory>
|
<FSharpDirectory>$(SdkOutputDirectory)/FSharp</FSharpDirectory>
|
||||||
<CompilationDirectory>$(BaseOutputDirectory)/compilation</CompilationDirectory>
|
<CompilationDirectory>$(BaseOutputDirectory)/compilation</CompilationDirectory>
|
||||||
<IntermediateDirectory>$(BaseOutputDirectory)/intermediate</IntermediateDirectory>
|
<IntermediateDirectory>$(BaseOutputDirectory)/int</IntermediateDirectory>
|
||||||
<PackagesDirectory>$(BaseOutputDirectory)/packages</PackagesDirectory>
|
<PackagesDirectory>$(BaseOutputDirectory)/packages</PackagesDirectory>
|
||||||
<SharedFrameworkPublishDirectory>$(IntermediateDirectory)/sharedFrameworkPublish</SharedFrameworkPublishDirectory>
|
<SharedFrameworkPublishDirectory>$(IntermediateDirectory)/sharedFrameworkPublish</SharedFrameworkPublishDirectory>
|
||||||
<AspNetCoreSharedFxPublishDirectory>$(IntermediateDirectory)/aspnetSharedFxPublish</AspNetCoreSharedFxPublishDirectory>
|
<AspNetCoreSharedFxPublishDirectory>$(IntermediateDirectory)/aspnetSharedFxPublish</AspNetCoreSharedFxPublishDirectory>
|
||||||
|
|
|
@ -22,12 +22,12 @@
|
||||||
<Target Name="SetSigningProperties">
|
<Target Name="SetSigningProperties">
|
||||||
<Error Condition="'$(Rid)' == ''" Text="Missing required property 'Rid'." />
|
<Error Condition="'$(Rid)' == ''" Text="Missing required property 'Rid'." />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<SdkResolverOutputDirectory>$(BaseOutputDirectory)/intermediate/MSBuildExtensionsLayout/MSBuildSdkResolver</SdkResolverOutputDirectory>
|
<SdkResolverOutputDirectory>$(IntermediateDirectory)/MSBuildExtensionsLayout/MSBuildSdkResolver</SdkResolverOutputDirectory>
|
||||||
|
|
||||||
<!-- The OutDir and IntermediateOutputPath properties are required by MicroBuild. MicroBuild only
|
<!-- The OutDir and IntermediateOutputPath properties are required by MicroBuild. MicroBuild only
|
||||||
signs files that are under these paths. -->
|
signs files that are under these paths. -->
|
||||||
<OutDir Condition="'$(OutDir)' == ''">$(BaseOutputDirectory)</OutDir>
|
<OutDir Condition="'$(OutDir)' == ''">$(BaseOutputDirectory)</OutDir>
|
||||||
<IntermediateOutputPath Condition="'$(IntermediateOutputPath)' == ''">$(BaseOutputDirectory)/intermediate</IntermediateOutputPath>
|
<IntermediateOutputPath Condition="'$(IntermediateOutputPath)' == ''">$(IntermediateDirectory)</IntermediateOutputPath>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<VersionMajor>2</VersionMajor>
|
<VersionMajor>2</VersionMajor>
|
||||||
<VersionMinor>1</VersionMinor>
|
<VersionMinor>2</VersionMinor>
|
||||||
<VersionPatch>400</VersionPatch>
|
<VersionPatch>100</VersionPatch>
|
||||||
<ReleaseSuffix Condition=" '$(ReleaseSuffix)' == '' ">preview</ReleaseSuffix>
|
<ReleaseSuffix Condition=" '$(ReleaseSuffix)' == '' ">preview1</ReleaseSuffix>
|
||||||
|
|
||||||
<MajorMinorVersion>$(VersionMajor).$(VersionMinor)</MajorMinorVersion>
|
<MajorMinorVersion>$(VersionMajor).$(VersionMinor)</MajorMinorVersion>
|
||||||
<CliVersionNoSuffix>$(VersionMajor).$(VersionMinor).$(VersionPatch)</CliVersionNoSuffix>
|
<CliVersionNoSuffix>$(VersionMajor).$(VersionMinor).$(VersionPatch)</CliVersionNoSuffix>
|
||||||
|
|
|
@ -94,12 +94,12 @@
|
||||||
UseHardlinksIfPossible="False" />
|
UseHardlinksIfPossible="False" />
|
||||||
|
|
||||||
<!-- Remove Shared Framework and Debian Packages -->
|
<!-- Remove Shared Framework and Debian Packages -->
|
||||||
<Exec Command="sudo dpkg -r $(SdkDebianPackageName)" />
|
<Exec ContinueOnError="WarnAndContinue" Command="sudo dpkg -r $(SdkDebianPackageName)" />
|
||||||
<Exec Command="sudo dpkg -r $(AspNetCoreSharedFxDebianPackageName)" />
|
<Exec ContinueOnError="WarnAndContinue" Command="sudo dpkg -r $(AspNetCoreSharedFxDebianPackageName)" />
|
||||||
<Exec Command="sudo dpkg -r $(SharedFxDebianPackageName)" />
|
<Exec ContinueOnError="WarnAndContinue" Command="sudo dpkg -r $(SharedFxDebianPackageName)" />
|
||||||
<Exec Command="sudo dpkg -r $(HostFxrDebianPackageName)" />
|
<Exec ContinueOnError="WarnAndContinue" Command="sudo dpkg -r $(HostFxrDebianPackageName)" />
|
||||||
<Exec Command="sudo dpkg -r $(HostDebianPackageName)" />
|
<Exec ContinueOnError="WarnAndContinue" Command="sudo dpkg -r $(HostDebianPackageName)" />
|
||||||
<Exec Command="sudo dpkg -r $(RuntimeDepsPackageName)" />
|
<Exec ContinueOnError="WarnAndContinue" Command="sudo dpkg -r $(RuntimeDepsPackageName)" />
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
<Target Name="TestSdkDeb"
|
<Target Name="TestSdkDeb"
|
||||||
|
@ -129,12 +129,12 @@
|
||||||
ToolPath="$(DebianInstalledDirectory)" />
|
ToolPath="$(DebianInstalledDirectory)" />
|
||||||
|
|
||||||
<!-- Clean up Packages -->
|
<!-- Clean up Packages -->
|
||||||
<Exec Command="sudo dpkg -r $(SdkDebianPackageName)" />
|
<Exec ContinueOnError="WarnAndContinue" Command="sudo dpkg -r $(SdkDebianPackageName)" />
|
||||||
<Exec Command="sudo dpkg -r $(AspNetCoreSharedFxDebianPackageName)" />
|
<Exec ContinueOnError="WarnAndContinue" Command="sudo dpkg -r $(AspNetCoreSharedFxDebianPackageName)" />
|
||||||
<Exec Command="sudo dpkg -r $(SharedFxDebianPackageName)" />
|
<Exec ContinueOnError="WarnAndContinue" Command="sudo dpkg -r $(SharedFxDebianPackageName)" />
|
||||||
<Exec Command="sudo dpkg -r $(HostFxrDebianPackageName)" />
|
<Exec ContinueOnError="WarnAndContinue" Command="sudo dpkg -r $(HostFxrDebianPackageName)" />
|
||||||
<Exec Command="sudo dpkg -r $(HostDebianPackageName)" />
|
<Exec ContinueOnError="WarnAndContinue" Command="sudo dpkg -r $(HostDebianPackageName)" />
|
||||||
<Exec Command="sudo dpkg -r $(RuntimeDepsPackageName)" />
|
<Exec ContinueOnError="WarnAndContinue" Command="sudo dpkg -r $(RuntimeDepsPackageName)" />
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
<Target Name="PrepareDotnetDebDirectories">
|
<Target Name="PrepareDotnetDebDirectories">
|
||||||
|
|
|
@ -30,7 +30,11 @@
|
||||||
<SharedFxDebianPackageVersion>$(MicrosoftNETCoreAppMajorMinorVersion)</SharedFxDebianPackageVersion>
|
<SharedFxDebianPackageVersion>$(MicrosoftNETCoreAppMajorMinorVersion)</SharedFxDebianPackageVersion>
|
||||||
<SharedFxDebianPackageFileName>dotnet-runtime-$(SharedFxDebianPackageFileVersion)</SharedFxDebianPackageFileName>
|
<SharedFxDebianPackageFileName>dotnet-runtime-$(SharedFxDebianPackageFileVersion)</SharedFxDebianPackageFileName>
|
||||||
<SharedFxDebianPackageFileName>$(SharedFxDebianPackageFileName.ToLower())</SharedFxDebianPackageFileName>
|
<SharedFxDebianPackageFileName>$(SharedFxDebianPackageFileName.ToLower())</SharedFxDebianPackageFileName>
|
||||||
<SharedFxDebianPackageName>dotnet-runtime-$(SharedFxDebianPackageVersion)</SharedFxDebianPackageName>
|
|
||||||
|
<!--Replace the line below with this line when the following issue is resolved: https://github.com/dotnet/cli/issues/9672
|
||||||
|
<SharedFxDebianPackageName>dotnet-runtime-$(SharedFxDebianPackageVersion)</SharedFxDebianPackageName>-->
|
||||||
|
<SharedFxDebianPackageName>dotnet-runtime-$(SharedFxDebianPackageFileVersion)</SharedFxDebianPackageName>
|
||||||
|
|
||||||
<SharedFxDebianPackageName>$(SharedFxDebianPackageName.ToLower())</SharedFxDebianPackageName>
|
<SharedFxDebianPackageName>$(SharedFxDebianPackageName.ToLower())</SharedFxDebianPackageName>
|
||||||
<HostFxrDebianPackageVersion>$(HostFxrMajorMinorVersion)</HostFxrDebianPackageVersion>
|
<HostFxrDebianPackageVersion>$(HostFxrMajorMinorVersion)</HostFxrDebianPackageVersion>
|
||||||
<HostFxrDebianPackageName>dotnet-hostfxr-$(HostFxrDebianPackageVersion)</HostFxrDebianPackageName>
|
<HostFxrDebianPackageName>dotnet-hostfxr-$(HostFxrDebianPackageVersion)</HostFxrDebianPackageName>
|
||||||
|
@ -38,7 +42,11 @@
|
||||||
<HostDebianPackageName>dotnet-host</HostDebianPackageName>
|
<HostDebianPackageName>dotnet-host</HostDebianPackageName>
|
||||||
<AspNetCoreSharedFxDebianPackageFileName>aspnetcore-runtime-$(AspNetCoreVersion)</AspNetCoreSharedFxDebianPackageFileName>
|
<AspNetCoreSharedFxDebianPackageFileName>aspnetcore-runtime-$(AspNetCoreVersion)</AspNetCoreSharedFxDebianPackageFileName>
|
||||||
<AspNetCoreSharedFxDebianPackageFileName>$(AspNetCoreSharedFxDebianPackageFileName.ToLower())</AspNetCoreSharedFxDebianPackageFileName>
|
<AspNetCoreSharedFxDebianPackageFileName>$(AspNetCoreSharedFxDebianPackageFileName.ToLower())</AspNetCoreSharedFxDebianPackageFileName>
|
||||||
<AspNetCoreSharedFxDebianPackageName>aspnetcore-runtime-$(AspNetCoreMajorMinorVersion)</AspNetCoreSharedFxDebianPackageName>
|
|
||||||
|
<!--Replace the line below with this line when the following issue is resolved: https://github.com/dotnet/cli/issues/9672
|
||||||
|
<AspNetCoreSharedFxDebianPackageName>aspnetcore-runtime-$(AspNetCoreMajorMinorVersion)</AspNetCoreSharedFxDebianPackageName>-->
|
||||||
|
<AspNetCoreSharedFxDebianPackageName>aspnetcore-runtime-$(AspNetCoreVersion)</AspNetCoreSharedFxDebianPackageName>
|
||||||
|
|
||||||
<AspNetCoreSharedFxDebianPackageName>$(AspNetCoreSharedFxDebianPackageName.ToLower())</AspNetCoreSharedFxDebianPackageName>
|
<AspNetCoreSharedFxDebianPackageName>$(AspNetCoreSharedFxDebianPackageName.ToLower())</AspNetCoreSharedFxDebianPackageName>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@ function DownloadNugetExe
|
||||||
|
|
||||||
if (-not (Test-Path $NuGetExe)) {
|
if (-not (Test-Path $NuGetExe)) {
|
||||||
Write-Output 'Downloading nuget.exe to ' + $NuGetExe
|
Write-Output 'Downloading nuget.exe to ' + $NuGetExe
|
||||||
wget https://dist.nuget.org/win-x86-commandline/v3.5.0-rc1/NuGet.exe -OutFile $NuGetExe
|
wget https://dist.nuget.org/win-x86-commandline/v4.7.0/nuget.exe -OutFile $NuGetExe
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
15
scripts/obtain/dotnet-install.ps1
vendored
15
scripts/obtain/dotnet-install.ps1
vendored
|
@ -73,6 +73,8 @@
|
||||||
.PARAMETER SkipNonVersionedFiles
|
.PARAMETER SkipNonVersionedFiles
|
||||||
Default: false
|
Default: false
|
||||||
Skips installing non-versioned files if they already exist, such as dotnet.exe.
|
Skips installing non-versioned files if they already exist, such as dotnet.exe.
|
||||||
|
.PARAMETER NoCdn
|
||||||
|
Disable downloading from the Azure CDN, and use the uncached feed directly.
|
||||||
#>
|
#>
|
||||||
[cmdletbinding()]
|
[cmdletbinding()]
|
||||||
param(
|
param(
|
||||||
|
@ -91,13 +93,18 @@ param(
|
||||||
[string]$FeedCredential,
|
[string]$FeedCredential,
|
||||||
[string]$ProxyAddress,
|
[string]$ProxyAddress,
|
||||||
[switch]$ProxyUseDefaultCredentials,
|
[switch]$ProxyUseDefaultCredentials,
|
||||||
[switch]$SkipNonVersionedFiles
|
[switch]$SkipNonVersionedFiles,
|
||||||
|
[switch]$NoCdn
|
||||||
)
|
)
|
||||||
|
|
||||||
Set-StrictMode -Version Latest
|
Set-StrictMode -Version Latest
|
||||||
$ErrorActionPreference="Stop"
|
$ErrorActionPreference="Stop"
|
||||||
$ProgressPreference="SilentlyContinue"
|
$ProgressPreference="SilentlyContinue"
|
||||||
|
|
||||||
|
if ($NoCdn) {
|
||||||
|
$AzureFeed = $UncachedFeed
|
||||||
|
}
|
||||||
|
|
||||||
$BinFolderRelativePath=""
|
$BinFolderRelativePath=""
|
||||||
|
|
||||||
if ($SharedRuntime -and (-not $Runtime)) {
|
if ($SharedRuntime -and (-not $Runtime)) {
|
||||||
|
@ -461,6 +468,12 @@ function Extract-Dotnet-Package([string]$ZipPath, [string]$OutPath) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function DownloadFile([Uri]$Uri, [string]$OutPath) {
|
function DownloadFile([Uri]$Uri, [string]$OutPath) {
|
||||||
|
if ($Uri -notlike "http*") {
|
||||||
|
Say-Verbose "Copying file from $Uri to $OutPath"
|
||||||
|
Copy-Item $Uri.AbsolutePath $OutPath
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
$Stream = $null
|
$Stream = $null
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
28
scripts/obtain/dotnet-install.sh
vendored
28
scripts/obtain/dotnet-install.sh
vendored
|
@ -75,16 +75,24 @@ get_legacy_os_name_from_platform() {
|
||||||
echo "debian"
|
echo "debian"
|
||||||
return 0
|
return 0
|
||||||
;;
|
;;
|
||||||
|
"debian.9")
|
||||||
|
echo "debian.9"
|
||||||
|
return 0
|
||||||
|
;;
|
||||||
"fedora.23")
|
"fedora.23")
|
||||||
echo "fedora.23"
|
echo "fedora.23"
|
||||||
return 0
|
return 0
|
||||||
;;
|
;;
|
||||||
|
"fedora.24")
|
||||||
|
echo "fedora.24"
|
||||||
|
return 0
|
||||||
|
;;
|
||||||
"fedora.27")
|
"fedora.27")
|
||||||
echo "fedora.27"
|
echo "fedora.27"
|
||||||
return 0
|
return 0
|
||||||
;;
|
;;
|
||||||
"fedora.24")
|
"fedora.28")
|
||||||
echo "fedora.24"
|
echo "fedora.28"
|
||||||
return 0
|
return 0
|
||||||
;;
|
;;
|
||||||
"opensuse.13.2")
|
"opensuse.13.2")
|
||||||
|
@ -628,7 +636,7 @@ extract_dotnet_package() {
|
||||||
tar -xzf "$zip_path" -C "$temp_out_path" > /dev/null || failed=true
|
tar -xzf "$zip_path" -C "$temp_out_path" > /dev/null || failed=true
|
||||||
|
|
||||||
local folders_with_version_regex='^.*/[0-9]+\.[0-9]+[^/]+/'
|
local folders_with_version_regex='^.*/[0-9]+\.[0-9]+[^/]+/'
|
||||||
find "$temp_out_path" -type f | grep -Eo "$folders_with_version_regex" | copy_files_or_dirs_from_list "$temp_out_path" "$out_path" false
|
find "$temp_out_path" -type f | grep -Eo "$folders_with_version_regex" | sort | copy_files_or_dirs_from_list "$temp_out_path" "$out_path" false
|
||||||
find "$temp_out_path" -type f | grep -Ev "$folders_with_version_regex" | copy_files_or_dirs_from_list "$temp_out_path" "$out_path" "$override_non_versioned_files"
|
find "$temp_out_path" -type f | grep -Ev "$folders_with_version_regex" | copy_files_or_dirs_from_list "$temp_out_path" "$out_path" "$override_non_versioned_files"
|
||||||
|
|
||||||
rm -rf "$temp_out_path"
|
rm -rf "$temp_out_path"
|
||||||
|
@ -648,6 +656,11 @@ download() {
|
||||||
local remote_path="$1"
|
local remote_path="$1"
|
||||||
local out_path="${2:-}"
|
local out_path="${2:-}"
|
||||||
|
|
||||||
|
if [[ "$remote_path" != "http"* ]]; then
|
||||||
|
cp "$remote_path" "$out_path"
|
||||||
|
return $?
|
||||||
|
fi
|
||||||
|
|
||||||
local failed=false
|
local failed=false
|
||||||
if machine_has "curl"; then
|
if machine_has "curl"; then
|
||||||
downloadcurl "$remote_path" "$out_path" || failed=true
|
downloadcurl "$remote_path" "$out_path" || failed=true
|
||||||
|
@ -811,6 +824,7 @@ install_dir="<auto>"
|
||||||
architecture="<auto>"
|
architecture="<auto>"
|
||||||
dry_run=false
|
dry_run=false
|
||||||
no_path=false
|
no_path=false
|
||||||
|
no_cdn=false
|
||||||
azure_feed="https://dotnetcli.azureedge.net/dotnet"
|
azure_feed="https://dotnetcli.azureedge.net/dotnet"
|
||||||
uncached_feed="https://dotnetcli.blob.core.windows.net/dotnet"
|
uncached_feed="https://dotnetcli.blob.core.windows.net/dotnet"
|
||||||
feed_credential=""
|
feed_credential=""
|
||||||
|
@ -862,6 +876,9 @@ do
|
||||||
--verbose|-[Vv]erbose)
|
--verbose|-[Vv]erbose)
|
||||||
verbose=true
|
verbose=true
|
||||||
;;
|
;;
|
||||||
|
--no-cdn|-[Nn]o[Cc]dn)
|
||||||
|
no_cdn=true
|
||||||
|
;;
|
||||||
--azure-feed|-[Aa]zure[Ff]eed)
|
--azure-feed|-[Aa]zure[Ff]eed)
|
||||||
shift
|
shift
|
||||||
azure_feed="$1"
|
azure_feed="$1"
|
||||||
|
@ -924,6 +941,7 @@ do
|
||||||
echo " --verbose,-Verbose Display diagnostics information."
|
echo " --verbose,-Verbose Display diagnostics information."
|
||||||
echo " --azure-feed,-AzureFeed Azure feed location. Defaults to $azure_feed, This parameter typically is not changed by the user."
|
echo " --azure-feed,-AzureFeed Azure feed location. Defaults to $azure_feed, This parameter typically is not changed by the user."
|
||||||
echo " --uncached-feed,-UncachedFeed Uncached feed location. This parameter typically is not changed by the user."
|
echo " --uncached-feed,-UncachedFeed Uncached feed location. This parameter typically is not changed by the user."
|
||||||
|
echo " --no-cdn,-NoCdn Disable downloading from the Azure CDN, and use the uncached feed directly."
|
||||||
echo " --feed-credential,-FeedCredential Azure feed shared access token. This parameter typically is not specified."
|
echo " --feed-credential,-FeedCredential Azure feed shared access token. This parameter typically is not specified."
|
||||||
echo " --runtime-id Installs the .NET Tools for the given platform (use linux-x64 for portable linux)."
|
echo " --runtime-id Installs the .NET Tools for the given platform (use linux-x64 for portable linux)."
|
||||||
echo " -RuntimeId"
|
echo " -RuntimeId"
|
||||||
|
@ -949,6 +967,10 @@ do
|
||||||
shift
|
shift
|
||||||
done
|
done
|
||||||
|
|
||||||
|
if [ "$no_cdn" = true ]; then
|
||||||
|
azure_feed="$uncached_feed"
|
||||||
|
fi
|
||||||
|
|
||||||
check_min_reqs
|
check_min_reqs
|
||||||
calculate_vars
|
calculate_vars
|
||||||
|
|
||||||
|
|
|
@ -1,14 +1,12 @@
|
||||||
#!/bin/bash
|
|
||||||
# bash parameter completion for the dotnet CLI
|
# bash parameter completion for the dotnet CLI
|
||||||
|
|
||||||
_dotnet_bash_complete()
|
_dotnet_bash_complete()
|
||||||
{
|
{
|
||||||
local word=${COMP_WORDS[COMP_CWORD]}
|
local word=${COMP_WORDS[COMP_CWORD]}
|
||||||
local dotnetPath=${COMP_WORDS[1]}
|
|
||||||
|
|
||||||
local completions=("$(dotnet complete --position ${COMP_POINT} "${COMP_LINE}")")
|
local completions=("$(dotnet complete --position ${COMP_POINT} "${COMP_LINE}")")
|
||||||
|
|
||||||
COMPREPLY=( $(compgen -W "$completions" -- "$word") )
|
COMPREPLY=( $(compgen -W "$completions" -- "$word") )
|
||||||
}
|
}
|
||||||
|
|
||||||
complete -f -F _dotnet_bash_complete dotnet
|
complete -f -F _dotnet_bash_complete dotnet
|
||||||
|
|
|
@ -2,11 +2,9 @@
|
||||||
|
|
||||||
_dotnet_zsh_complete()
|
_dotnet_zsh_complete()
|
||||||
{
|
{
|
||||||
local dotnetPath=$words[1]
|
|
||||||
|
|
||||||
local completions=("$(dotnet complete "$words")")
|
local completions=("$(dotnet complete "$words")")
|
||||||
|
|
||||||
reply=( "${(ps:\n:)completions}" )
|
reply=( "${(ps:\n:)completions}" )
|
||||||
}
|
}
|
||||||
|
|
||||||
compctl -K _dotnet_zsh_complete dotnet
|
compctl -K _dotnet_zsh_complete dotnet
|
||||||
|
|
|
@ -9,7 +9,7 @@ namespace Microsoft.DotNet.Cli.Telemetry
|
||||||
internal static class Sha256Hasher
|
internal static class Sha256Hasher
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// // The hashed mac address needs to be the same hashed value as produced by the other distinct sources given the same input. (e.g. VsCode)
|
/// The hashed mac address needs to be the same hashed value as produced by the other distinct sources given the same input. (e.g. VsCode)
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static string Hash(string text)
|
public static string Hash(string text)
|
||||||
{
|
{
|
||||||
|
|
|
@ -141,14 +141,7 @@ namespace Microsoft.DotNet.Cli.Telemetry
|
||||||
{
|
{
|
||||||
foreach (KeyValuePair<string, double> measurement in measurements)
|
foreach (KeyValuePair<string, double> measurement in measurements)
|
||||||
{
|
{
|
||||||
if (eventMeasurements.ContainsKey(measurement.Key))
|
eventMeasurements[measurement.Key] = measurement.Value;
|
||||||
{
|
|
||||||
eventMeasurements[measurement.Key] = measurement.Value;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
eventMeasurements.Add(measurement.Key, measurement.Value);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return eventMeasurements;
|
return eventMeasurements;
|
||||||
|
@ -161,14 +154,7 @@ namespace Microsoft.DotNet.Cli.Telemetry
|
||||||
var eventProperties = new Dictionary<string, string>(_commonProperties);
|
var eventProperties = new Dictionary<string, string>(_commonProperties);
|
||||||
foreach (KeyValuePair<string, string> property in properties)
|
foreach (KeyValuePair<string, string> property in properties)
|
||||||
{
|
{
|
||||||
if (eventProperties.ContainsKey(property.Key))
|
eventProperties[property.Key] = property.Value;
|
||||||
{
|
|
||||||
eventProperties[property.Key] = property.Value;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
eventProperties.Add(property.Key, property.Value);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return eventProperties;
|
return eventProperties;
|
||||||
}
|
}
|
||||||
|
|
|
@ -63,7 +63,7 @@ namespace Microsoft.DotNet.Cli
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var cancellation = new CancellationTokenSource(TimeSpan.FromSeconds(10));
|
var cancellation = new CancellationTokenSource(TimeSpan.FromSeconds(10));
|
||||||
var response = httpClient.GetAsync($"https://api-v2v3search-0.nuget.org/query?q={match}&skip=0&take=100&prerelease=true", cancellation.Token)
|
var response = httpClient.GetAsync($"https://api-v2v3search-0.nuget.org/autocomplete?q={match}&skip=0&take=100", cancellation.Token)
|
||||||
.Result;
|
.Result;
|
||||||
|
|
||||||
result = response.Content.ReadAsStreamAsync().Result;
|
result = response.Content.ReadAsStreamAsync().Result;
|
||||||
|
@ -81,7 +81,7 @@ namespace Microsoft.DotNet.Cli
|
||||||
|
|
||||||
foreach (var id in json["data"])
|
foreach (var id in json["data"])
|
||||||
{
|
{
|
||||||
yield return id["id"].Value<string>();
|
yield return id.Value<string>();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -156,7 +156,7 @@
|
||||||
<data name="CmdLoggerDescription" xml:space="preserve">
|
<data name="CmdLoggerDescription" xml:space="preserve">
|
||||||
<value>The logger to use for test results.
|
<value>The logger to use for test results.
|
||||||
Examples:
|
Examples:
|
||||||
Log in trx format using a unqiue file name: --logger trx
|
Log in trx format using a unique file name: --logger trx
|
||||||
Log in trx format using the specified file name: --logger "trx;LogFileName=<TestResults.trx>"
|
Log in trx format using the specified file name: --logger "trx;LogFileName=<TestResults.trx>"
|
||||||
See https://aka.ms/vstest-report for more information on logger arguments.</value>
|
See https://aka.ms/vstest-report for more information on logger arguments.</value>
|
||||||
</data>
|
</data>
|
||||||
|
@ -208,4 +208,4 @@ Outputs a 'Sequence.xml' file in the current directory that captures the order o
|
||||||
<data name="ConfigurationOptionDescription" xml:space="preserve">
|
<data name="ConfigurationOptionDescription" xml:space="preserve">
|
||||||
<value>The configuration to use for running tests. The default for most projects is 'Debug'.</value>
|
<value>The configuration to use for running tests. The default for most projects is 'Debug'.</value>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
||||||
|
|
|
@ -62,10 +62,10 @@
|
||||||
<trans-unit id="CmdLoggerDescription">
|
<trans-unit id="CmdLoggerDescription">
|
||||||
<source>The logger to use for test results.
|
<source>The logger to use for test results.
|
||||||
Examples:
|
Examples:
|
||||||
Log in trx format using a unqiue file name: --logger trx
|
Log in trx format using a unique file name: --logger trx
|
||||||
Log in trx format using the specified file name: --logger "trx;LogFileName=<TestResults.trx>"
|
Log in trx format using the specified file name: --logger "trx;LogFileName=<TestResults.trx>"
|
||||||
See https://aka.ms/vstest-report for more information on logger arguments.</source>
|
See https://aka.ms/vstest-report for more information on logger arguments.</source>
|
||||||
<target state="translated">Protokolovací nástroj, který se použije pro výsledky testů.
|
<target state="needs-review-translation">Protokolovací nástroj, který se použije pro výsledky testů.
|
||||||
Příklady:
|
Příklady:
|
||||||
Protokol ve formátu trx, který používá jedinečný název souboru: --logger trx
|
Protokol ve formátu trx, který používá jedinečný název souboru: --logger trx
|
||||||
Protokol ve formátu trx, který používá zadaný název souboru: --logger "trx;LogFileName=<TestResults.trx>"
|
Protokol ve formátu trx, který používá zadaný název souboru: --logger "trx;LogFileName=<TestResults.trx>"
|
||||||
|
|
|
@ -62,10 +62,10 @@
|
||||||
<trans-unit id="CmdLoggerDescription">
|
<trans-unit id="CmdLoggerDescription">
|
||||||
<source>The logger to use for test results.
|
<source>The logger to use for test results.
|
||||||
Examples:
|
Examples:
|
||||||
Log in trx format using a unqiue file name: --logger trx
|
Log in trx format using a unique file name: --logger trx
|
||||||
Log in trx format using the specified file name: --logger "trx;LogFileName=<TestResults.trx>"
|
Log in trx format using the specified file name: --logger "trx;LogFileName=<TestResults.trx>"
|
||||||
See https://aka.ms/vstest-report for more information on logger arguments.</source>
|
See https://aka.ms/vstest-report for more information on logger arguments.</source>
|
||||||
<target state="translated">Die für Testergebnisse zu verwendende Protokollierung.
|
<target state="needs-review-translation">Die für Testergebnisse zu verwendende Protokollierung.
|
||||||
Beispiele:
|
Beispiele:
|
||||||
Hiermit werden Ergebnisse im TRX-Format mit eindeutigem Dateinamen protokolliert: --logger trx
|
Hiermit werden Ergebnisse im TRX-Format mit eindeutigem Dateinamen protokolliert: --logger trx
|
||||||
Hiermit werden Ergebnisse im TRX-Format mit dem angegebenem Dateinamen protokolliert: --logger "trx;LogFileName=<TestResults.trx>"
|
Hiermit werden Ergebnisse im TRX-Format mit dem angegebenem Dateinamen protokolliert: --logger "trx;LogFileName=<TestResults.trx>"
|
||||||
|
|
|
@ -62,10 +62,10 @@
|
||||||
<trans-unit id="CmdLoggerDescription">
|
<trans-unit id="CmdLoggerDescription">
|
||||||
<source>The logger to use for test results.
|
<source>The logger to use for test results.
|
||||||
Examples:
|
Examples:
|
||||||
Log in trx format using a unqiue file name: --logger trx
|
Log in trx format using a unique file name: --logger trx
|
||||||
Log in trx format using the specified file name: --logger "trx;LogFileName=<TestResults.trx>"
|
Log in trx format using the specified file name: --logger "trx;LogFileName=<TestResults.trx>"
|
||||||
See https://aka.ms/vstest-report for more information on logger arguments.</source>
|
See https://aka.ms/vstest-report for more information on logger arguments.</source>
|
||||||
<target state="translated">Registrador que se utiliza para los resultados de las pruebas.
|
<target state="needs-review-translation">Registrador que se utiliza para los resultados de las pruebas.
|
||||||
Ejemplos:
|
Ejemplos:
|
||||||
Registrar en formato trx con un nombre de archivo único: --logger trx
|
Registrar en formato trx con un nombre de archivo único: --logger trx
|
||||||
Registrar en formato trx con el nombre de archivo especificado: --logger "trx;LogFileName=<TestResults.trx>"
|
Registrar en formato trx con el nombre de archivo especificado: --logger "trx;LogFileName=<TestResults.trx>"
|
||||||
|
|
|
@ -62,10 +62,10 @@
|
||||||
<trans-unit id="CmdLoggerDescription">
|
<trans-unit id="CmdLoggerDescription">
|
||||||
<source>The logger to use for test results.
|
<source>The logger to use for test results.
|
||||||
Examples:
|
Examples:
|
||||||
Log in trx format using a unqiue file name: --logger trx
|
Log in trx format using a unique file name: --logger trx
|
||||||
Log in trx format using the specified file name: --logger "trx;LogFileName=<TestResults.trx>"
|
Log in trx format using the specified file name: --logger "trx;LogFileName=<TestResults.trx>"
|
||||||
See https://aka.ms/vstest-report for more information on logger arguments.</source>
|
See https://aka.ms/vstest-report for more information on logger arguments.</source>
|
||||||
<target state="translated">Journaliseur à utiliser pour les résultats des tests.
|
<target state="needs-review-translation">Journaliseur à utiliser pour les résultats des tests.
|
||||||
Exemples :
|
Exemples :
|
||||||
Journal au format trx avec un nom de fichier unique : --logger trx
|
Journal au format trx avec un nom de fichier unique : --logger trx
|
||||||
Journal au format trx avec le nom de fichier spécifié : --logger "trx;LogFileName=<TestResults.trx>"
|
Journal au format trx avec le nom de fichier spécifié : --logger "trx;LogFileName=<TestResults.trx>"
|
||||||
|
|
|
@ -62,7 +62,7 @@
|
||||||
<trans-unit id="CmdLoggerDescription">
|
<trans-unit id="CmdLoggerDescription">
|
||||||
<source>The logger to use for test results.
|
<source>The logger to use for test results.
|
||||||
Examples:
|
Examples:
|
||||||
Log in trx format using a unqiue file name: --logger trx
|
Log in trx format using a unique file name: --logger trx
|
||||||
Log in trx format using the specified file name: --logger "trx;LogFileName=<TestResults.trx>"
|
Log in trx format using the specified file name: --logger "trx;LogFileName=<TestResults.trx>"
|
||||||
See https://aka.ms/vstest-report for more information on logger arguments.</source>
|
See https://aka.ms/vstest-report for more information on logger arguments.</source>
|
||||||
<target state="translated">Logger da usare per i risultati dei test.
|
<target state="translated">Logger da usare per i risultati dei test.
|
||||||
|
|
|
@ -62,7 +62,7 @@
|
||||||
<trans-unit id="CmdLoggerDescription">
|
<trans-unit id="CmdLoggerDescription">
|
||||||
<source>The logger to use for test results.
|
<source>The logger to use for test results.
|
||||||
Examples:
|
Examples:
|
||||||
Log in trx format using a unqiue file name: --logger trx
|
Log in trx format using a unique file name: --logger trx
|
||||||
Log in trx format using the specified file name: --logger "trx;LogFileName=<TestResults.trx>"
|
Log in trx format using the specified file name: --logger "trx;LogFileName=<TestResults.trx>"
|
||||||
See https://aka.ms/vstest-report for more information on logger arguments.</source>
|
See https://aka.ms/vstest-report for more information on logger arguments.</source>
|
||||||
<target state="translated">テスト結果のために使用するロガー。
|
<target state="translated">テスト結果のために使用するロガー。
|
||||||
|
|
|
@ -62,7 +62,7 @@
|
||||||
<trans-unit id="CmdLoggerDescription">
|
<trans-unit id="CmdLoggerDescription">
|
||||||
<source>The logger to use for test results.
|
<source>The logger to use for test results.
|
||||||
Examples:
|
Examples:
|
||||||
Log in trx format using a unqiue file name: --logger trx
|
Log in trx format using a unique file name: --logger trx
|
||||||
Log in trx format using the specified file name: --logger "trx;LogFileName=<TestResults.trx>"
|
Log in trx format using the specified file name: --logger "trx;LogFileName=<TestResults.trx>"
|
||||||
See https://aka.ms/vstest-report for more information on logger arguments.</source>
|
See https://aka.ms/vstest-report for more information on logger arguments.</source>
|
||||||
<target state="translated">테스트 결과에 사용할 로거입니다.
|
<target state="translated">테스트 결과에 사용할 로거입니다.
|
||||||
|
|
|
@ -62,7 +62,7 @@
|
||||||
<trans-unit id="CmdLoggerDescription">
|
<trans-unit id="CmdLoggerDescription">
|
||||||
<source>The logger to use for test results.
|
<source>The logger to use for test results.
|
||||||
Examples:
|
Examples:
|
||||||
Log in trx format using a unqiue file name: --logger trx
|
Log in trx format using a unique file name: --logger trx
|
||||||
Log in trx format using the specified file name: --logger "trx;LogFileName=<TestResults.trx>"
|
Log in trx format using the specified file name: --logger "trx;LogFileName=<TestResults.trx>"
|
||||||
See https://aka.ms/vstest-report for more information on logger arguments.</source>
|
See https://aka.ms/vstest-report for more information on logger arguments.</source>
|
||||||
<target state="translated">Rejestrator używany dla wyników testów.
|
<target state="translated">Rejestrator używany dla wyników testów.
|
||||||
|
|
|
@ -62,10 +62,10 @@
|
||||||
<trans-unit id="CmdLoggerDescription">
|
<trans-unit id="CmdLoggerDescription">
|
||||||
<source>The logger to use for test results.
|
<source>The logger to use for test results.
|
||||||
Examples:
|
Examples:
|
||||||
Log in trx format using a unqiue file name: --logger trx
|
Log in trx format using a unique file name: --logger trx
|
||||||
Log in trx format using the specified file name: --logger "trx;LogFileName=<TestResults.trx>"
|
Log in trx format using the specified file name: --logger "trx;LogFileName=<TestResults.trx>"
|
||||||
See https://aka.ms/vstest-report for more information on logger arguments.</source>
|
See https://aka.ms/vstest-report for more information on logger arguments.</source>
|
||||||
<target state="translated">O agente a ser usado para os resultados de teste.
|
<target state="needs-review-translation">O agente a ser usado para os resultados de teste.
|
||||||
Exemplos:
|
Exemplos:
|
||||||
Registrar no formato trx usando um nome de arquivo exclusivo: --logger trx
|
Registrar no formato trx usando um nome de arquivo exclusivo: --logger trx
|
||||||
Registrar no formato trx usando um nome de arquivo especificado: --logger "trx;LogFileName=<TestResults.trx>"
|
Registrar no formato trx usando um nome de arquivo especificado: --logger "trx;LogFileName=<TestResults.trx>"
|
||||||
|
|
|
@ -62,10 +62,10 @@
|
||||||
<trans-unit id="CmdLoggerDescription">
|
<trans-unit id="CmdLoggerDescription">
|
||||||
<source>The logger to use for test results.
|
<source>The logger to use for test results.
|
||||||
Examples:
|
Examples:
|
||||||
Log in trx format using a unqiue file name: --logger trx
|
Log in trx format using a unique file name: --logger trx
|
||||||
Log in trx format using the specified file name: --logger "trx;LogFileName=<TestResults.trx>"
|
Log in trx format using the specified file name: --logger "trx;LogFileName=<TestResults.trx>"
|
||||||
See https://aka.ms/vstest-report for more information on logger arguments.</source>
|
See https://aka.ms/vstest-report for more information on logger arguments.</source>
|
||||||
<target state="translated">Средство ведения журнала для результатов теста.
|
<target state="needs-review-translation">Средство ведения журнала для результатов теста.
|
||||||
Примеры
|
Примеры
|
||||||
Журнал в формате TRX с уникальным именем файла: --logger trx
|
Журнал в формате TRX с уникальным именем файла: --logger trx
|
||||||
Журнал в формате TRX с заданным именем файла: --logger "trx;LogFileName=<результаты_теста.trx>"
|
Журнал в формате TRX с заданным именем файла: --logger "trx;LogFileName=<результаты_теста.trx>"
|
||||||
|
|
|
@ -62,10 +62,10 @@
|
||||||
<trans-unit id="CmdLoggerDescription">
|
<trans-unit id="CmdLoggerDescription">
|
||||||
<source>The logger to use for test results.
|
<source>The logger to use for test results.
|
||||||
Examples:
|
Examples:
|
||||||
Log in trx format using a unqiue file name: --logger trx
|
Log in trx format using a unique file name: --logger trx
|
||||||
Log in trx format using the specified file name: --logger "trx;LogFileName=<TestResults.trx>"
|
Log in trx format using the specified file name: --logger "trx;LogFileName=<TestResults.trx>"
|
||||||
See https://aka.ms/vstest-report for more information on logger arguments.</source>
|
See https://aka.ms/vstest-report for more information on logger arguments.</source>
|
||||||
<target state="translated">Test sonuçları için kullanılacak günlükçü.
|
<target state="needs-review-translation">Test sonuçları için kullanılacak günlükçü.
|
||||||
Örnekler:
|
Örnekler:
|
||||||
Benzersiz bir dosya adı kullanan trx biçiminde günlük kaydı: --logger trx
|
Benzersiz bir dosya adı kullanan trx biçiminde günlük kaydı: --logger trx
|
||||||
Belirtilen dosya adını kullanan trx biçiminde günlük kaydı: --logger "trx;LogFileName=<TestSonuçları.trx>"
|
Belirtilen dosya adını kullanan trx biçiminde günlük kaydı: --logger "trx;LogFileName=<TestSonuçları.trx>"
|
||||||
|
|
|
@ -62,10 +62,10 @@
|
||||||
<trans-unit id="CmdLoggerDescription">
|
<trans-unit id="CmdLoggerDescription">
|
||||||
<source>The logger to use for test results.
|
<source>The logger to use for test results.
|
||||||
Examples:
|
Examples:
|
||||||
Log in trx format using a unqiue file name: --logger trx
|
Log in trx format using a unique file name: --logger trx
|
||||||
Log in trx format using the specified file name: --logger "trx;LogFileName=<TestResults.trx>"
|
Log in trx format using the specified file name: --logger "trx;LogFileName=<TestResults.trx>"
|
||||||
See https://aka.ms/vstest-report for more information on logger arguments.</source>
|
See https://aka.ms/vstest-report for more information on logger arguments.</source>
|
||||||
<target state="translated">用于测试结果的记录器。
|
<target state="needs-review-translation">用于测试结果的记录器。
|
||||||
示例:
|
示例:
|
||||||
使用唯一文件名以 trx 格式记录: --logger trx
|
使用唯一文件名以 trx 格式记录: --logger trx
|
||||||
使用指定文件名以 trx 格式记录: --logger "trx;LogFileName=<TestResults.trx>"
|
使用指定文件名以 trx 格式记录: --logger "trx;LogFileName=<TestResults.trx>"
|
||||||
|
|
|
@ -62,10 +62,10 @@
|
||||||
<trans-unit id="CmdLoggerDescription">
|
<trans-unit id="CmdLoggerDescription">
|
||||||
<source>The logger to use for test results.
|
<source>The logger to use for test results.
|
||||||
Examples:
|
Examples:
|
||||||
Log in trx format using a unqiue file name: --logger trx
|
Log in trx format using a unique file name: --logger trx
|
||||||
Log in trx format using the specified file name: --logger "trx;LogFileName=<TestResults.trx>"
|
Log in trx format using the specified file name: --logger "trx;LogFileName=<TestResults.trx>"
|
||||||
See https://aka.ms/vstest-report for more information on logger arguments.</source>
|
See https://aka.ms/vstest-report for more information on logger arguments.</source>
|
||||||
<target state="translated">要用於測試結果的記錄器。
|
<target state="needs-review-translation">要用於測試結果的記錄器。
|
||||||
範例:
|
範例:
|
||||||
使用唯一的檔案名稱,以 trx 格式記錄: --logger trx
|
使用唯一的檔案名稱,以 trx 格式記錄: --logger trx
|
||||||
使用指定的檔案名稱,以 trx 格式記錄: --logger "trx;LogFileName=<TestResults.trx>"
|
使用指定的檔案名稱,以 trx 格式記錄: --logger "trx;LogFileName=<TestResults.trx>"
|
||||||
|
|
|
@ -52,7 +52,7 @@
|
||||||
<ProjectReference Include="../Microsoft.DotNet.Cli.Sln.Internal/Microsoft.DotNet.Cli.Sln.Internal.csproj" />
|
<ProjectReference Include="../Microsoft.DotNet.Cli.Sln.Internal/Microsoft.DotNet.Cli.Sln.Internal.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />
|
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
|
||||||
<PackageReference Include="System.Text.Encoding.CodePages" Version="4.4.0" />
|
<PackageReference Include="System.Text.Encoding.CodePages" Version="4.4.0" />
|
||||||
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.0.0" />
|
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.0.0" />
|
||||||
<PackageReference Include="Microsoft.NETCore.App" Version="$(MicrosoftNETCoreAppPackageVersion)" />
|
<PackageReference Include="Microsoft.NETCore.App" Version="$(MicrosoftNETCoreAppPackageVersion)" />
|
||||||
|
|
|
@ -555,7 +555,7 @@
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="NoReferencesFound">
|
<trans-unit id="NoReferencesFound">
|
||||||
<source>There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). </source>
|
<source>There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). </source>
|
||||||
<target state="translated">Projekt {1} neobsahuje odkazy na {0}. ;; {0} je typ požadované položky (projekt, balíček p2p) a {1} je používaný objekt (soubor projektu nebo soubor řešení). </target>
|
<target state="translated">Projekt {1} neobsahuje odkazy na {0}. ;; {0} je typ požadované položky (projekt, balíček, p2p) a {1} je používaný objekt (soubor projektu nebo soubor řešení).</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="NoProjectsFound">
|
<trans-unit id="NoProjectsFound">
|
||||||
|
|
|
@ -275,7 +275,7 @@
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="MoreThanOneXFound">
|
<trans-unit id="MoreThanOneXFound">
|
||||||
<source>More than one {0} found.</source>
|
<source>More than one {0} found.</source>
|
||||||
<target state="translated">Es wurden mehrere Elemente vom Typ "{0}" gefunden.</target>
|
<target state="translated">Es wurden mehrere Elemente "{0}" gefunden.</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="XAlreadyContainsY">
|
<trans-unit id="XAlreadyContainsY">
|
||||||
|
@ -310,7 +310,7 @@
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="SpecifyAtLeastOne">
|
<trans-unit id="SpecifyAtLeastOne">
|
||||||
<source>Please specify at least one {0}.</source>
|
<source>Please specify at least one {0}.</source>
|
||||||
<target state="translated">Geben Sie mindestens ein Element vom Typ "{0}" an.</target>
|
<target state="translated">Geben Sie mindestens ein Element "{0}" an.</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="CouldNotConnectWithTheServer">
|
<trans-unit id="CouldNotConnectWithTheServer">
|
||||||
|
@ -355,7 +355,7 @@
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="FoundInvalidProject">
|
<trans-unit id="FoundInvalidProject">
|
||||||
<source>Found a project `{0}` but it is invalid.</source>
|
<source>Found a project `{0}` but it is invalid.</source>
|
||||||
<target state="translated">Ein Projekt vom Typ "{0}" wurde gefunden, ist aber ungültig.</target>
|
<target state="translated">Ein Projekt "{0}" wurde gefunden, ist aber ungültig.</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="InvalidProject">
|
<trans-unit id="InvalidProject">
|
||||||
|
@ -420,7 +420,7 @@
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="ProjectAlreadyHasAReference">
|
<trans-unit id="ProjectAlreadyHasAReference">
|
||||||
<source>Project {0} already has a reference `{1}`.</source>
|
<source>Project {0} already has a reference `{1}`.</source>
|
||||||
<target state="translated">Für das Projekt "{0}" ist bereits ein Verweis vom Typ "{1}" vorhanden.</target>
|
<target state="translated">Für das Projekt "{0}" ist bereits ein Verweis "{1}" vorhanden.</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="PackageReferenceDoesNotExist">
|
<trans-unit id="PackageReferenceDoesNotExist">
|
||||||
|
@ -445,7 +445,7 @@
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="ProjectAlreadyHasAPackageReference">
|
<trans-unit id="ProjectAlreadyHasAPackageReference">
|
||||||
<source>Project {0} already has a reference `{1}`.</source>
|
<source>Project {0} already has a reference `{1}`.</source>
|
||||||
<target state="translated">Für das Projekt "{0}" ist bereits ein Verweis vom Typ "{1}" vorhanden.</target>
|
<target state="translated">Für das Projekt "{0}" ist bereits ein Verweis "{1}" vorhanden.</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="PleaseSpecifyVersion">
|
<trans-unit id="PleaseSpecifyVersion">
|
||||||
|
@ -555,7 +555,7 @@
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="NoReferencesFound">
|
<trans-unit id="NoReferencesFound">
|
||||||
<source>There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). </source>
|
<source>There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). </source>
|
||||||
<target state="translated">Das Projekt "{1}" enthält keine Verweise vom Typ "{0}". ;; "{0}" ist die Art des angeforderten Elements (Projekt, Paket, P2P). "{1}" ist das Objekt, für das ein Vorgang ausgeführt wird (eine Projektdatei oder eine Projektmappendatei). </target>
|
<target state="translated">Das Projekt "{1}" enthält keine Verweise "{0}". ;; "{0}" ist die Art des angeforderten Elements (Projekt, Paket, P2P). "{1}" ist das Objekt, für das ein Vorgang ausgeführt wird (eine Projektdatei oder eine Projektmappendatei). </target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="NoProjectsFound">
|
<trans-unit id="NoProjectsFound">
|
||||||
|
|
|
@ -95,7 +95,7 @@
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="SolutionFile">
|
<trans-unit id="SolutionFile">
|
||||||
<source>Solution file</source>
|
<source>Solution file</source>
|
||||||
<target state="translated">Archivo de la solución</target>
|
<target state="translated">Archivo de solución</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Executable">
|
<trans-unit id="Executable">
|
||||||
|
@ -270,7 +270,7 @@
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="XYDoesNotExist">
|
<trans-unit id="XYDoesNotExist">
|
||||||
<source>{0} `{1}` does not exist.</source>
|
<source>{0} `{1}` does not exist.</source>
|
||||||
<target state="translated">El {0} `{1}` no existe.</target>
|
<target state="translated">El {0} "{1}" no existe.</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="MoreThanOneXFound">
|
<trans-unit id="MoreThanOneXFound">
|
||||||
|
@ -495,7 +495,7 @@
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="ReferenceDeleted">
|
<trans-unit id="ReferenceDeleted">
|
||||||
<source>Reference `{0}` deleted.</source>
|
<source>Reference `{0}` deleted.</source>
|
||||||
<target state="translated">Se ha eliminado la referencia “{0}”.</target>
|
<target state="translated">Se ha eliminado la referencia "{0}".</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="SpecifyAtLeastOneReferenceToDelete">
|
<trans-unit id="SpecifyAtLeastOneReferenceToDelete">
|
||||||
|
|
|
@ -215,12 +215,12 @@
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="XSuccessfullyUpdated">
|
<trans-unit id="XSuccessfullyUpdated">
|
||||||
<source>{0} successfully updated.</source>
|
<source>{0} successfully updated.</source>
|
||||||
<target state="translated">{0} è stato aggiornato.</target>
|
<target state="translated">L'elemento {0} è stato aggiornato.</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="XIsInvalid">
|
<trans-unit id="XIsInvalid">
|
||||||
<source>{0} is invalid.</source>
|
<source>{0} is invalid.</source>
|
||||||
<target state="translated">{0} non è valido.</target>
|
<target state="translated">L'elemento {0} non è valido.</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="XYFoundButInvalid">
|
<trans-unit id="XYFoundButInvalid">
|
||||||
|
@ -245,7 +245,7 @@
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="XNotFound">
|
<trans-unit id="XNotFound">
|
||||||
<source>{0} not found.</source>
|
<source>{0} not found.</source>
|
||||||
<target state="translated">{0} non è stato trovato.</target>
|
<target state="translated">L'elemento {0} non è stato trovato.</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="XOrYNotFound">
|
<trans-unit id="XOrYNotFound">
|
||||||
|
@ -265,7 +265,7 @@
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="XDoesNotExist">
|
<trans-unit id="XDoesNotExist">
|
||||||
<source>{0} does not exist.</source>
|
<source>{0} does not exist.</source>
|
||||||
<target state="translated">{0} non esiste.</target>
|
<target state="translated">L'elemento {0} non esiste.</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="XYDoesNotExist">
|
<trans-unit id="XYDoesNotExist">
|
||||||
|
@ -300,7 +300,7 @@
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="XWasNotExpected">
|
<trans-unit id="XWasNotExpected">
|
||||||
<source>{0} was not expected.</source>
|
<source>{0} was not expected.</source>
|
||||||
<target state="translated">{0} è imprevisto.</target>
|
<target state="translated">L'elemento {0} non è previsto.</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="XNotProvided">
|
<trans-unit id="XNotProvided">
|
||||||
|
|
|
@ -155,7 +155,7 @@
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Save">
|
<trans-unit id="Save">
|
||||||
<source>Save</source>
|
<source>Save</source>
|
||||||
<target state="translated">[保存]</target>
|
<target state="translated">保存</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Find">
|
<trans-unit id="Find">
|
||||||
|
@ -375,7 +375,7 @@
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="FoundMoreThanOneSolutionIn">
|
<trans-unit id="FoundMoreThanOneSolutionIn">
|
||||||
<source>Found more than one solution file in {0}. Please specify which one to use.</source>
|
<source>Found more than one solution file in {0}. Please specify which one to use.</source>
|
||||||
<target state="translated">{0} に複数のソリューションが見つかりました。使用するプロジェクトを指定してください。</target>
|
<target state="translated">{0} に複数のソリューションが見つかりました。どれを使用するか指定してください。</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="FoundInvalidSolution">
|
<trans-unit id="FoundInvalidSolution">
|
||||||
|
@ -555,7 +555,7 @@
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="NoReferencesFound">
|
<trans-unit id="NoReferencesFound">
|
||||||
<source>There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). </source>
|
<source>There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). </source>
|
||||||
<target state="translated">プロジェクト {1} 内に {0} 参照がありません。;; {0} は要求中のアイテムの種類であり (プロジェクト、パッケージ、p2p)、{1} は (プロジェクト ファイルまたはソリューション ファイル) で操作されるオブジェクトです。 </target>
|
<target state="translated">プロジェクト {1} 内に {0} 参照がありません。;; {0} は要求中のアイテムの種類であり (プロジェクト、パッケージ、p2p)、{1} は操作されるオブジェクト (プロジェクト ファイルまたはソリューション ファイル) です。</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="NoProjectsFound">
|
<trans-unit id="NoProjectsFound">
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="MoreThanOneProjectInDirectory">
|
<trans-unit id="MoreThanOneProjectInDirectory">
|
||||||
<source>Found more than one project in `{0}`. Please specify which one to use.</source>
|
<source>Found more than one project in `{0}`. Please specify which one to use.</source>
|
||||||
<target state="translated">'{0}'에서 프로젝트를 두 개 이상 찾았습니다. 사용할 파일을 지정하세요.</target>
|
<target state="translated">'{0}'에서 프로젝트를 두 개 이상 찾았습니다. 사용할 프로젝트를 지정하세요.</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="ProjectAlreadyHasAreference">
|
<trans-unit id="ProjectAlreadyHasAreference">
|
||||||
|
@ -350,7 +350,7 @@
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="FoundMoreThanOneProjectIn">
|
<trans-unit id="FoundMoreThanOneProjectIn">
|
||||||
<source>Found more than one project in `{0}`. Please specify which one to use.</source>
|
<source>Found more than one project in `{0}`. Please specify which one to use.</source>
|
||||||
<target state="translated">'{0}'에서 프로젝트를 두 개 이상 찾았습니다. 사용할 파일을 지정하세요.</target>
|
<target state="translated">'{0}'에서 프로젝트를 두 개 이상 찾았습니다. 사용할 프로젝트를 지정하세요.</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="FoundInvalidProject">
|
<trans-unit id="FoundInvalidProject">
|
||||||
|
|
|
@ -10,12 +10,12 @@
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="MoreThanOneProjectInDirectory">
|
<trans-unit id="MoreThanOneProjectInDirectory">
|
||||||
<source>Found more than one project in `{0}`. Please specify which one to use.</source>
|
<source>Found more than one project in `{0}`. Please specify which one to use.</source>
|
||||||
<target state="translated">Foi encontrado mais de um projeto em ‘{0}’. Especifique qual usar.</target>
|
<target state="translated">Foi encontrado mais de um projeto em ‘{0}’. Especifique qual deve ser usado.</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="ProjectAlreadyHasAreference">
|
<trans-unit id="ProjectAlreadyHasAreference">
|
||||||
<source>Project already has a reference to `{0}`.</source>
|
<source>Project already has a reference to `{0}`.</source>
|
||||||
<target state="translated">O projeto já tem uma referência para ‘{0}’.</target>
|
<target state="translated">O projeto já tem uma referência a ‘{0}’.</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="ProjectReferenceCouldNotBeFound">
|
<trans-unit id="ProjectReferenceCouldNotBeFound">
|
||||||
|
@ -350,7 +350,8 @@
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="FoundMoreThanOneProjectIn">
|
<trans-unit id="FoundMoreThanOneProjectIn">
|
||||||
<source>Found more than one project in `{0}`. Please specify which one to use.</source>
|
<source>Found more than one project in `{0}`. Please specify which one to use.</source>
|
||||||
<target state="translated">Foi encontrado mais de um projeto em ‘{0}’. Especifique qual usar.</target>
|
<target state="translated">Foi encontrado mais de um projeto em ‘{0}’. Especifique qual deve ser usado.
|
||||||
|
</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="FoundInvalidProject">
|
<trans-unit id="FoundInvalidProject">
|
||||||
|
@ -370,7 +371,8 @@
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="CouldNotFindSolutionOrDirectory">
|
<trans-unit id="CouldNotFindSolutionOrDirectory">
|
||||||
<source>Could not find solution or directory `{0}`.</source>
|
<source>Could not find solution or directory `{0}`.</source>
|
||||||
<target state="translated">Não foi possível encontrar a solução ou diretório ‘{0}’.</target>
|
<target state="translated">Não foi possível encontrar a solução ou o diretório ‘{0}’.
|
||||||
|
</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="FoundMoreThanOneSolutionIn">
|
<trans-unit id="FoundMoreThanOneSolutionIn">
|
||||||
|
@ -555,7 +557,8 @@
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="NoReferencesFound">
|
<trans-unit id="NoReferencesFound">
|
||||||
<source>There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). </source>
|
<source>There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). </source>
|
||||||
<target state="translated">Não há referências {0} no projeto {1}. ;; {0} é o tipo do item sendo solicitado (projeto, pacote, p2p) e {1} é o objeto no qual ocorre a operação (um arquivo de projeto ou um arquivo de solução). </target>
|
<target state="translated">Não há referências de {0} no projeto {1}. ;; {0} é o tipo do item que está sendo solicitado (projeto, pacote, p2p) e {1} é o objeto no qual ocorre a operação (um arquivo de projeto ou de solução).
|
||||||
|
</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="NoProjectsFound">
|
<trans-unit id="NoProjectsFound">
|
||||||
|
|
|
@ -130,7 +130,7 @@
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Delete">
|
<trans-unit id="Delete">
|
||||||
<source>Delete</source>
|
<source>Delete</source>
|
||||||
<target state="translated">Удаление.</target>
|
<target state="translated">Удалить</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="Update">
|
<trans-unit id="Update">
|
||||||
|
|
|
@ -555,7 +555,7 @@
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="NoReferencesFound">
|
<trans-unit id="NoReferencesFound">
|
||||||
<source>There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). </source>
|
<source>There are no {0} references in project {1}. ;; {0} is the type of the item being requested (project, package, p2p) and {1} is the object operated on (a project file or a solution file). </source>
|
||||||
<target state="translated">项目 {1} 中没有 {0} 引用。;; {0} 是正在请求的项类型(项目、包、p2p)且 {1} 是项目文件或解决方案文件上操作的对象。 </target>
|
<target state="translated">项目 {1} 中没有 {0} 引用。;; {0} 是正在请求的项类型(项目、包、p2p),{1} 是操作的对象(项目文件或解决方案文件)。</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="NoProjectsFound">
|
<trans-unit id="NoProjectsFound">
|
||||||
|
|
|
@ -140,7 +140,7 @@
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="New">
|
<trans-unit id="New">
|
||||||
<source>New</source>
|
<source>New</source>
|
||||||
<target state="translated">新增</target>
|
<target state="translated">新建</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="List">
|
<trans-unit id="List">
|
||||||
|
@ -300,7 +300,7 @@
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="XWasNotExpected">
|
<trans-unit id="XWasNotExpected">
|
||||||
<source>{0} was not expected.</source>
|
<source>{0} was not expected.</source>
|
||||||
<target state="translated">未預期是 {0}。</target>
|
<target state="translated">不應該是 {0}。</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="XNotProvided">
|
<trans-unit id="XNotProvided">
|
||||||
|
|
|
@ -259,7 +259,7 @@
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
<Target Name="CrossgenPublishDir"
|
<Target Name="CrossgenPublishDir"
|
||||||
Condition=" '$(DISABLE_CROSSGEN)' == '' And !$(Architecture.StartsWith('arm')) "
|
Condition=" '$(DISABLE_CROSSGEN)' == '' And '$(Architecture)' != 'arm' "
|
||||||
AfterTargets="PublishSdks">
|
AfterTargets="PublishSdks">
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<RoslynFiles Include="$(PublishDir)Roslyn\bincore\**\*" />
|
<RoslynFiles Include="$(PublishDir)Roslyn\bincore\**\*" />
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue