I hereby claim:
- I am natemcmaster on github.
- I am natemcmaster (https://keybase.io/natemcmaster) on keybase.
- I have a public key whose fingerprint is 7A31 3DC2 CB0F 494B 84E9 69B8 AE49 AC45 8DE4 0A8E
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
This defines the schema for .NET Core's runtimeconfig.json file.
Using Visual Studio, you can get auto-completion if you import the schema in your .JSON file like this:
{
"$schema": "https://gist.githubusercontent.com/natemcmaster/0bdee16450f8ec1823f2c11af880ceeb/raw/runtimeconfig.template.schema.json"
}
using System.Threading.Tasks; | |
using McMaster.Extensions.CommandLineUtils; | |
using NuGet.Common; | |
namespace custom_restore | |
{ | |
internal class MyNuGetLogger : LoggerBase | |
{ | |
private IReporter _reporter; |
In an effort to make it possible to build ASP.NET Core from source code only on a single machine without access to NuGet.org or already-built assets, we need to revisit the structuring of our package dependencies. The NuGet package that contains Libuv bundles binaries built on macOS, Windows, and Linux. This means it is not possible to build the package, Libuv.nupkg, from source code only -- you must have multiple machines. Furthermore, because Microsoft.AspNetCore.App depends on this package via transitive reference through Microsoft.AspNetCore.Server.Kestrel, a project restore against source-built only packages cannot succeed in offline mode.
We went over ways we could solve this. This includes:
<Project> | |
<PropertyGroup> | |
<MicrosoftAspNetCorePackageVersion>2.0.1</MicrosoftAspNetCorePackageVersion> | |
<MicrosoftAspNetCoreAllPackageVersion>2.0.3</MicrosoftAspNetCoreAllPackageVersion> | |
<MicrosoftAspNetCoreAntiforgeryPackageVersion>2.0.1</MicrosoftAspNetCoreAntiforgeryPackageVersion> | |
<MicrosoftAspNetCoreApplicationInsightsHostingStartupPackageVersion>2.0.1</MicrosoftAspNetCoreApplicationInsightsHostingStartupPackageVersion> | |
<MicrosoftAspNetCoreAuthenticationAbstractionsPackageVersion>2.0.1</MicrosoftAspNetCoreAuthenticationAbstractionsPackageVersion> | |
<MicrosoftAspNetCoreAuthenticationCookiesPackageVersion>2.0.1</MicrosoftAspNetCoreAuthenticationCookiesPackageVersion> | |
<MicrosoftAspNetCoreAuthenticationCorePackageVersion>2.0.1</MicrosoftAspNetCoreAuthenticationCorePackageVersion> | |
<MicrosoftAspNetCoreAuthenticationFacebookPackageVersion>2.0.1</MicrosoftAspNetCoreAuthenticationFacebookPackageVersion> |
Assuming you use template defaults
public static void Main()
{
var host = new WebHostBuilder()
.UseContentRoot(Directory.GetCurrentDirectory())
.Build();
}
public Startup(IHostingEnvironment env)
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Diagnostics; | |
namespace DotnetNames.Tool | |
{ | |
class Program | |
{ |
#!/usr/bin/env bash | |
if [[ $# < 2 ]]; then | |
echo "Usage: [src] [dest]" | |
exit 1 | |
fi | |
function realpath() { | |
[[ $1 = /* ]] && echo "$1" || echo "$PWD/${1#./}" | |
} |
{ | |
"name": "dotnet-sql-cache", | |
"version": "1.0.0-preview2-final", | |
"bin": { "dotnet-sql-cache": "./shim.js" }, | |
"files": [ | |
"shim.js", | |
"**/*.dll", | |
"*.runtimeconfig.json", | |
"*.deps.json", | |
"runtimes/**/*" |
using System; | |
using System.IO; | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
foreach (var file in args) | |
{ | |
var attributes = new FileInfo(file).Attributes; |