Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
Dapper
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tsai
Dapper
Commits
7f047722
Commit
7f047722
authored
Sep 19, 2012
by
Marc Gravell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.12.1 deploy
Minor deploy glitch (should now include intellisense files!)
parent
d462d7d3
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
2 deletions
+11
-2
Dapper NET35.csproj
Dapper NET35/Dapper NET35.csproj
+2
-0
Dapper.csproj
Dapper/Dapper.csproj
+2
-1
SqlMapper.cs
Dapper/SqlMapper.cs
+3
-0
dapper.nuspec
Dapper/dapper.nuspec
+4
-1
No files found.
Dapper NET35/Dapper NET35.csproj
View file @
7f047722
...
...
@@ -22,6 +22,7 @@
<ErrorReport>
prompt
</ErrorReport>
<WarningLevel>
4
</WarningLevel>
<LangVersion>
3
</LangVersion>
<DocumentationFile>
bin\Debug\Dapper.xml
</DocumentationFile>
</PropertyGroup>
<PropertyGroup
Condition=
" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "
>
<DebugType>
pdbonly
</DebugType>
...
...
@@ -31,6 +32,7 @@
<ErrorReport>
prompt
</ErrorReport>
<WarningLevel>
4
</WarningLevel>
<LangVersion>
3
</LangVersion>
<DocumentationFile>
bin\Release\Dapper.xml
</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Reference
Include=
"System"
/>
...
...
Dapper/Dapper.csproj
View file @
7f047722
...
...
@@ -23,7 +23,7 @@
<ErrorReport>
prompt
</ErrorReport>
<WarningLevel>
4
</WarningLevel>
<TreatWarningsAsErrors>
true
</TreatWarningsAsErrors>
<DocumentationFile>
bin\Debug\Dapper.
XML
</DocumentationFile>
<DocumentationFile>
bin\Debug\Dapper.
xml
</DocumentationFile>
</PropertyGroup>
<PropertyGroup
Condition=
" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "
>
<DebugType>
pdbonly
</DebugType>
...
...
@@ -32,6 +32,7 @@
<DefineConstants>
TRACE
</DefineConstants>
<ErrorReport>
prompt
</ErrorReport>
<WarningLevel>
4
</WarningLevel>
<DocumentationFile>
bin\Release\Dapper.xml
</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Reference
Include=
"System"
/>
...
...
Dapper/SqlMapper.cs
View file @
7f047722
...
...
@@ -242,6 +242,9 @@ private static void PurgeQueryCacheByType(Type type)
_queryCache
.
Remove
(
key
);
}
}
/// <summary>
/// Purge the query cache
/// </summary>
public
static
void
PurgeQueryCache
()
{
lock
(
_queryCache
)
...
...
Dapper/dapper.nuspec
View file @
7f047722
...
...
@@ -2,7 +2,7 @@
<package
xmlns=
"http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"
>
<metadata
schemaVersion=
"2"
>
<id>
Dapper
</id>
<version>
1.12
</version>
<version>
1.12
.1
</version>
<title>
Dapper dot net
</title>
<authors>
Sam Saffron,Marc Gravell
</authors>
<owners>
Sam Saffron,Marc Gravell
</owners>
...
...
@@ -19,6 +19,7 @@
<frameworkAssembly
assemblyName=
"Microsoft.CSharp"
targetFramework=
".NETFramework4.0-Client, .NETFramework4.0"
/>
</frameworkAssemblies>
<releaseNotes>
* 1.12.1 - Minor deploy glitch (should now include intellisense files!)
* 1.12 - Better automatic type-mapping (int vs long, float vs double, etc)
* Fixed: bug with indexer properties
* 1.11 - Custom type-map support
...
...
@@ -35,7 +36,9 @@
<files>
<file
src=
"bin\Release\Dapper.dll"
target=
"lib\net40"
/>
<file
src=
"bin\Release\Dapper.pdb"
target=
"lib\net40"
/>
<file
src=
"bin\Release\Dapper.xml"
target=
"lib\net40"
/>
<file
src=
"..\Dapper NET35\bin\Release\Dapper.dll"
target=
"lib\net35"
/>
<file
src=
"..\Dapper NET35\bin\Release\Dapper.pdb"
target=
"lib\net35"
/>
<file
src=
"..\Dapper NET35\bin\Release\Dapper.xml"
target=
"lib\net35"
/>
</files>
</package>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment