-
Notifications
You must be signed in to change notification settings - Fork 604
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MiniProfiler.Minimal: Hello World (#636)
This adds a `MiniProfiler.Minimal` build with only the bare bones needed - zero dependencies for services that need a bare package to do the basics.
- Loading branch information
1 parent
9f222b0
commit 9113616
Showing
8 changed files
with
60 additions
and
4 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
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,25 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<AssemblyName>MiniProfiler.Minimal</AssemblyName> | ||
<Title>MiniProfiler.Minimal</Title> | ||
<Authors>Nick Craver</Authors> | ||
<Description>MiniProfiler's no-frills headless build for no-UI applications.</Description> | ||
<TargetFrameworks>netstandard2.0</TargetFrameworks> | ||
<DefineConstants>MINIMAL</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="../MiniProfiler.Shared/**/*.cs" Exclude="../MiniProfiler.Shared/obj/**/*.cs" /> | ||
|
||
<Compile Remove="../MiniProfiler.Shared/ClientTiming*.cs" /> | ||
<Compile Remove="../MiniProfiler.Shared/ColorScheme.cs" /> | ||
<Compile Remove="../MiniProfiler.Shared/DiagnosticInitializer.cs" /> | ||
<Compile Remove="../MiniProfiler.Shared/IMiniProfilerBuilder.cs" /> | ||
<Compile Remove="../MiniProfiler.Shared/Render*.cs" /> | ||
|
||
<Compile Remove="../MiniProfiler.Shared/Internal/Render.cs" /> | ||
<Compile Remove="../MiniProfiler.Shared/Internal/ResultRequest.cs" /> | ||
<Compile Remove="../MiniProfiler.Shared/SqlFormatters/**.cs" /> | ||
<Compile Remove="../MiniProfiler.Shared/Storage/DatabaseStorageBase.cs" /> | ||
</ItemGroup> | ||
</Project> |
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
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
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