-
Notifications
You must be signed in to change notification settings - Fork 129
/
GlobalAssemblyInfo.cs
41 lines (35 loc) · 1.62 KB
/
GlobalAssemblyInfo.cs
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
// This file contains common AssemblyVersion data to be shared across all projects in this solution.
using System;
using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: CLSCompliant(true)]
[assembly: AssemblyCompany("")]
[assembly: AssemblyDescription("Dapper.FastCRUD is built around essential features of the C# 6 / VB 14 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. VS2015 or an equivalent build environment is recommended.")]
[assembly: AssemblyProduct("Dapper.FastCRUD")]
[assembly: AssemblyCopyright("Copyright © 2022 Dapper.FastCRUD contributors")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: AssemblyTitle("Dapper.FastCRUD")]
[assembly: NeutralResourcesLanguage("en")]
[assembly: ComVisible(false)]
#if DEBUG
[assembly: AssemblyConfiguration("Debug")]
#else
[assembly: AssemblyConfiguration("Release")]
#endif
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Revision
// Build
//
// You can specify all the values or you can default the Revision and Build Numbers by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: InternalsVisibleTo("Dapper.FastCrud.Tests")]
[assembly: InternalsVisibleTo("Dapper.FastCrud.Benchmarks")]
[assembly: InternalsVisibleTo("DynamicProxyGenAssembly2")]