-
Notifications
You must be signed in to change notification settings - Fork 603
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MiniProfiler.MongoDb nuspec and AseemblyInfo
- Loading branch information
Showing
4 changed files
with
29 additions
and
27 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package> | ||
<metadata> | ||
<id>MiniProfiler.MongoDb</id> | ||
<version>3.0.11</version> | ||
<authors>Marc Gravell, Jarrod Dixon, Yaakov Ellis</authors> | ||
<owners>Marc Gravell, Jarrod Dixon Yaakov Ellis</owners> | ||
<description>MiniProfiler extensions and helpers for MongoDb</description> | ||
<projectUrl>http://miniprofiler.com</projectUrl> | ||
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl> | ||
<tags>profiler performance profiling timing mongo mongodb</tags> | ||
<language>en-US</language> | ||
<dependencies> | ||
<dependency id="MiniProfiler" version="3.0.10" /> | ||
<dependency id="mongocsharpdriver" version="[1.8.3]" /> | ||
</dependencies> | ||
<releaseNotes>See https://github.com/MiniProfiler/dotnet/releases for more info</releaseNotes> | ||
</metadata> | ||
<files> | ||
<file src="StackExchange.Profiling.MongoDb\bin\Release\StackExchange.Profiling.MongoDb.*" target="lib\net40" /> | ||
</files> | ||
</package> |
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
31 changes: 5 additions & 26 deletions
31
StackExchange.Profiling.MongoDB/Properties/AssemblyInfo.cs
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,36 +1,15 @@ | ||
using System.Reflection; | ||
using System.Runtime.CompilerServices; | ||
using System.Runtime.InteropServices; | ||
|
||
// General Information about an assembly is controlled through the following | ||
// set of attributes. Change these attribute values to modify the information | ||
// associated with an assembly. | ||
[assembly: AssemblyTitle("StackExchange.Profiling.MongoDB")] | ||
[assembly: AssemblyDescription("")] | ||
[assembly: AssemblyDescription("MongoDb extensions for StackExchange.Profiling - http://miniprofiler.com")] | ||
[assembly: AssemblyConfiguration("")] | ||
[assembly: AssemblyCompany("")] | ||
[assembly: AssemblyCompany("Stack Exchange")] | ||
[assembly: AssemblyProduct("StackExchange.Profiling.MongoDB")] | ||
[assembly: AssemblyCopyright("Copyright © 2014")] | ||
[assembly: AssemblyCopyright("Copyright © 2014")] | ||
[assembly: AssemblyTrademark("")] | ||
[assembly: AssemblyCulture("")] | ||
|
||
// Setting ComVisible to false makes the types in this assembly not visible | ||
// to COM components. If you need to access a type in this assembly from | ||
// COM, set the ComVisible attribute to true on that type. | ||
[assembly: ComVisible(false)] | ||
|
||
// The following GUID is for the ID of the typelib if this project is exposed to COM | ||
[assembly: Guid("a502ee5c-a969-4cdf-b243-2c54c0e94c27")] | ||
|
||
// Version information for an assembly consists of the following four values: | ||
// | ||
// Major Version | ||
// Minor Version | ||
// Build Number | ||
// Revision | ||
// | ||
// You can specify all the values or you can default the Build and Revision Numbers | ||
// by using the '*' as shown below: | ||
// [assembly: AssemblyVersion("1.0.*")] | ||
[assembly: AssemblyVersion("1.0.0.0")] | ||
[assembly: AssemblyFileVersion("1.0.0.0")] | ||
[assembly: AssemblyVersion("3.0.11")] | ||
[assembly: AssemblyInformationalVersion("3.0.11")] |
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,4 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="mongocsharpdriver" version="1.8.3" allowedVersions="[1.8.3]" targetFramework="net45" /> | ||
<package id="mongocsharpdriver" version="1.8.3" allowedVersions="[1.8.3]" targetFramework="net40" /> | ||
</packages> |