This repository has been archived by the owner on Jan 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #129 from Glimpse/avanderhoorn-rtm-update
Update to work with RTM
- Loading branch information
Showing
897 changed files
with
58,594 additions
and
164,259 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
{ | ||
"projects": [ "src", "test/websites" ] | ||
} | ||
"projects": [ | ||
"src", | ||
"test/websites" | ||
], | ||
"sdk": { | ||
"version": "1.0.0-preview2-003121" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
using System.Linq; | ||
using System.Threading.Tasks; | ||
using Microsoft.AspNetCore.Hosting; | ||
|
||
namespace Glimpse.Agent.AspNet.Sample | ||
{ | ||
public class Program | ||
{ | ||
public static void Main(string[] args) | ||
{ | ||
var host = new WebHostBuilder() | ||
.UseKestrel() | ||
.UseContentRoot(Directory.GetCurrentDirectory()) | ||
.UseIISIntegration() | ||
.UseStartup<Startup>() | ||
.Build(); | ||
|
||
host.Run(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
{ | ||
"resources": | ||
{ | ||
"browserAgentScriptTemplate" : "http://localhost:5210/glimpse/agent/agent.js?hash=abaae0c9", | ||
"hudScriptTemplate" : "http://localhost:5210/glimpse/hud/hud.js?hash=abaae0c9", | ||
"messageIngressTemplate" : "http://localhost:5210/glimpse/message-ingress/", | ||
"metadataTemplate" : "http://localhost:5210/glimpse/metadata/?hash=abaae0c9", | ||
"contextTemplate" : "http://localhost:5210/glimpse/context/?contextId={contextId}{&types}", | ||
"clientScriptTemplate" : "http://localhost:5210/glimpse/client/index.html?hash=abaae0c9{&requestId,follow,metadataUri}" | ||
} | ||
"resources": { | ||
"browserAgentScriptTemplate": "http://localhost:5210/glimpse/agent/agent.js?hash=abaae0c9", | ||
"hudScriptTemplate": "http://localhost:5210/glimpse/hud/hud.js?hash=abaae0c9", | ||
"messageIngressTemplate": "http://localhost:5210/glimpse/message-ingress/", | ||
"metadataTemplate": "http://localhost:5210/glimpse/metadata/?hash=abaae0c9", | ||
"contextTemplate": "http://localhost:5210/glimpse/context/?contextId={contextId}{&types}", | ||
"clientScriptTemplate": "http://localhost:5210/glimpse/client/index.html?hash=abaae0c9{&requestId,follow,metadataUri}" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,43 @@ | ||
{ | ||
"webroot": "wwwroot", | ||
"version": "1.0.0-*", | ||
"exclude": [ | ||
"wwwroot" | ||
], | ||
"packExclude": [ | ||
"**.kproj", | ||
"**.user", | ||
"**.vspscc" | ||
], | ||
"commands": { | ||
"web": "Microsoft.AspNet.Hosting server=Microsoft.AspNet.Server.WebListener server.urls=http://localhost:5200", | ||
"kestrel": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.Kestrel --server.urls http://localhost:5200" | ||
}, | ||
{ | ||
"version": "1.0.0-*", | ||
"tools": { | ||
"Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-preview2-final" | ||
}, | ||
"dependencies": { | ||
"Glimpse.Agent.AspNet": "", | ||
"Microsoft.AspNet.Diagnostics": "1.0.0-rc1-final", | ||
"Microsoft.AspNet.Server.Kestrel": "1.0.0-rc1-final", | ||
"Microsoft.AspNet.Server.WebListener": "1.0.0-rc1-final" | ||
"Glimpse.Agent.AspNet": "2.0.0-*", | ||
"Microsoft.NETCore.App": { | ||
"version": "1.0.0", | ||
"type": "platform" | ||
}, | ||
"Microsoft.AspNetCore.Diagnostics": "1.0.0", | ||
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0", | ||
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0", | ||
"Microsoft.Extensions.Logging.Console": "1.0.0" | ||
}, | ||
"frameworks": { | ||
"dnx451": { } | ||
"netcoreapp1.0": { | ||
"imports": [ | ||
"dotnet5.6", | ||
"portable-net45+win8" | ||
] | ||
} | ||
}, | ||
"buildOptions": { | ||
"emitEntryPoint": true, | ||
"preserveCompilationContext": true | ||
}, | ||
"runtimeOptions": { | ||
"configProperties": { | ||
"System.GC.Server": true | ||
} | ||
}, | ||
"publishOptions": { | ||
"include": [ | ||
"wwwroot", | ||
"web.config" | ||
] | ||
}, | ||
"scripts": { | ||
"postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
|
||
<!-- | ||
Configure your application settings in appsettings.json. Learn more at http://go.microsoft.com/fwlink/?LinkId=786380 | ||
--> | ||
|
||
<system.webServer> | ||
<handlers> | ||
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified"/> | ||
</handlers> | ||
<aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false"/> | ||
</system.webServer> | ||
</configuration> |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
Oops, something went wrong.