-
Notifications
You must be signed in to change notification settings - Fork 128
/
Directory.Build.props
54 lines (48 loc) · 2.74 KB
/
Directory.Build.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<EnableDocumentationFile>true</EnableDocumentationFile>
<DocumentationFile>bin\$(Configuration)\$(MSBuildProjectName).xml</DocumentationFile>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<AppendTargetFrameworkToOutputPath>true</AppendTargetFrameworkToOutputPath>
<DebugType>embedded</DebugType>
<DebugSymbols>true</DebugSymbols>
<Description>
You hate verbatim SQL queries with zero type safety for your code but you love the speed?
Dapper.FastCRUD is built around essential features of the C# 6 / VB that have finally raised the simplicity of raw SQL constructs to acceptable maintenance levels.
These features leave no chance to mistypings or problems arising from db entity refactorings.
Visual Studio 2019 or later is recommended.
</Description>
<Authors>Dapper.FastCRUD Contributors</Authors>
<Version>1.0.0-preview</Version>
<MinClientVersion>3.3</MinClientVersion>
<!-- deprecated but still in use -->
<PackageIconUrl>https://raw.githubusercontent.com/MoonStorm/FastCrud/master/logo.png</PackageIconUrl>
<PackageIcon>logo.png</PackageIcon>
<!-- deprecated -->
<!-- <PackageLicenseUrl>http://www.opensource.org/licenses/MIT</PackageLicenseUrl> -->
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageTags>dapper fast crud orm sql sqlite mysql mssql localdb postgresql poco</PackageTags>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Summary>The fastest micro-orm for .NET</Summary>
<Company />
<Copyright />
<PackageProjectUrl>https://github.com/MoonStorm/FastCrud</PackageProjectUrl>
<!--<RunAnalyzersDuringLiveAnalysis>false</RunAnalyzersDuringLiveAnalysis>-->
<!--<SkipDefaultEditorConfigAsAdditionalFile>true</SkipDefaultEditorConfigAsAdditionalFile>-->
<!--<NoWarn>1701;1702;168</NoWarn>-->
</PropertyGroup>
<PropertyGroup Condition="!$(MSBuildProjectName.Contains('.Tests.'))">
<!-- <CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)Dapper.FastCrud.ruleset</CodeAnalysisRuleSet> -->
</PropertyGroup>
<PropertyGroup Condition="$(MSBuildProjectName.Contains('.Tests.'))">
<!--<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)Dapper.FastCrud.Tests.ruleset</CodeAnalysisRuleSet>-->
</PropertyGroup>
<ItemGroup>
<!--<AdditionalFiles Include="$(MSBuildThisFileDirectory).editorconfig" />-->
<Compile Include="$(MSBuildThisFileDirectory)GlobalAssemblyInfo.cs" />
<None Include="$(MSBuildThisFileDirectory)logo.png" Pack="true" PackagePath="/"/>
</ItemGroup>
</Project>