/
dev-npgsql
/
npgsql
Обзор
Документация
Войти
/
dev-npgsql
/
npgsql
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
v4.0.16
src/VSIX/Properties/AssemblyInfo.cs
22 строки
1 KB
Shay Rojansky
Bump version to 4.0.16
18 май 2024, 16:17
18 май 2024, 16:17
86e9a12
Код
Авторство
О чём код?
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using Microsoft.VisualStudio.Shell; // 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("NpgsqlVSIX")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] // 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 is necessary to make Visual Studio load our new version of Npgsql. // Specifically, the EF6 provider usuall depends on some old Npgsql, and trying to generate an EDM // model from an existing database will fail because of this. The following line redirects the EF6 // to use our own Npgsql instead. [assembly: ProvideBindingRedirection(AssemblyName = "Npgsql", NewVersion = "4.0.16.0", OldVersionLowerBound = "0.0.0.0", OldVersionUpperBound = "4.0.16.0")]