work on linqpad6 support (#32)
* work on linqpad6 support
* fix appveyor
* remove unneeded dll's
* fix assembly loading in linqpad, missing minor
* switch to linq2db version 3
* work on linq2db 3.0 support
* C# 8 NRT migration, enable access oledb/odbc + firebird drivers (more coming soon)
* remove debug code
* enable mysql, migrate to mysqlconnector, workaround inconsistencies in default schema name for procedures and tables
* add npgsql, fix linqpad6 support
* sybase ASE support
* oracle support
* SQL CE support
* DB2 LUW support
* sap hana support
* informix support
* sqlite support
* sql server support with spatial types
* Fix issues, found during access odbc provider testing:
- remove empty tables from tree (e.g. protected access tables)
- escape xml-unfriendly characters in strings and char values
- fix access ODBC procedure call
* - fix references for v6
- fix <i> styles for v6
- improve \uxxxx formatting
* - fix custom formatters
- fix DB2 types support
* - Firebird, Informix, mysql/mariadb testing
- nullability workaround for provider-specific value types
* - sqlce fixes
- postgresql types support
* sql server fixes
* fix oracle, remove native provider as it currently broken and not really needed
* - add provider path configuration for sqlce/saphana for linqpad6
- moved context element names to constants
- fixed conditional T4 generation for NotifyPropertyChanged (need to be ported to linq2db)
- fixed ui in connection dialog
- changed copyrights to "Linq To DB"
* forgot to add files to previous commit...
* update readme
* - add release notes
- pipelines and nuget files (untested yet)
* fix value formatter
* address code review
* add note about sql server 2000 support
* generate nuget on all branches
* cleanup/build fixes
* fix nuget pack command
* fix artifact publishing
* mkay, file mask not supported
* fix nuspec
* fix connection images location
* disable nuget generation on non-master/release branches
* remove var
Co-authored-by: MaceWindu <MaceWindu@users.noreply.github.com>
2020-07-28 11:15:59 +03:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
2018-06-08 15:48:42 +03:00
|
|
|
|
|
2018-12-15 18:44:03 +03:00
|
|
|
|
<PropertyGroup>
|
2021-11-21 19:32:06 +03:00
|
|
|
|
<!--net6.0-windows used only as additional built target and not released-->
|
|
|
|
|
<TargetFrameworks>net461;netcoreapp3.1;net6.0-windows</TargetFrameworks>
|
2018-12-15 18:44:03 +03:00
|
|
|
|
<RootNamespace>LinqToDB.LINQPad</RootNamespace>
|
|
|
|
|
<Company>linq2db</Company>
|
|
|
|
|
<Product>linq2db.LINQPad</Product>
|
|
|
|
|
<AssemblyTitle>$(Product)</AssemblyTitle>
|
2022-09-06 18:16:01 +03:00
|
|
|
|
<Version>4.2.0.0</Version>
|
2018-12-15 18:44:03 +03:00
|
|
|
|
<AssemblyVersion>$(Version)</AssemblyVersion>
|
|
|
|
|
<FileVersion>$(Version)</FileVersion>
|
2022-06-10 13:28:26 +03:00
|
|
|
|
<Copyright>Copyright © 2016-2022 Linq To DB Team</Copyright>
|
2018-12-15 18:44:03 +03:00
|
|
|
|
<AssemblyOriginatorKeyFile>linq2db.snk</AssemblyOriginatorKeyFile>
|
work on linqpad6 support (#32)
* work on linqpad6 support
* fix appveyor
* remove unneeded dll's
* fix assembly loading in linqpad, missing minor
* switch to linq2db version 3
* work on linq2db 3.0 support
* C# 8 NRT migration, enable access oledb/odbc + firebird drivers (more coming soon)
* remove debug code
* enable mysql, migrate to mysqlconnector, workaround inconsistencies in default schema name for procedures and tables
* add npgsql, fix linqpad6 support
* sybase ASE support
* oracle support
* SQL CE support
* DB2 LUW support
* sap hana support
* informix support
* sqlite support
* sql server support with spatial types
* Fix issues, found during access odbc provider testing:
- remove empty tables from tree (e.g. protected access tables)
- escape xml-unfriendly characters in strings and char values
- fix access ODBC procedure call
* - fix references for v6
- fix <i> styles for v6
- improve \uxxxx formatting
* - fix custom formatters
- fix DB2 types support
* - Firebird, Informix, mysql/mariadb testing
- nullability workaround for provider-specific value types
* - sqlce fixes
- postgresql types support
* sql server fixes
* fix oracle, remove native provider as it currently broken and not really needed
* - add provider path configuration for sqlce/saphana for linqpad6
- moved context element names to constants
- fixed conditional T4 generation for NotifyPropertyChanged (need to be ported to linq2db)
- fixed ui in connection dialog
- changed copyrights to "Linq To DB"
* forgot to add files to previous commit...
* update readme
* - add release notes
- pipelines and nuget files (untested yet)
* fix value formatter
* address code review
* add note about sql server 2000 support
* generate nuget on all branches
* cleanup/build fixes
* fix nuget pack command
* fix artifact publishing
* mkay, file mask not supported
* fix nuspec
* fix connection images location
* disable nuget generation on non-master/release branches
* remove var
Co-authored-by: MaceWindu <MaceWindu@users.noreply.github.com>
2020-07-28 11:15:59 +03:00
|
|
|
|
<UseWPF>true</UseWPF>
|
|
|
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
|
|
|
|
|
2021-11-21 19:32:06 +03:00
|
|
|
|
<LangVersion>10.0</LangVersion>
|
work on linqpad6 support (#32)
* work on linqpad6 support
* fix appveyor
* remove unneeded dll's
* fix assembly loading in linqpad, missing minor
* switch to linq2db version 3
* work on linq2db 3.0 support
* C# 8 NRT migration, enable access oledb/odbc + firebird drivers (more coming soon)
* remove debug code
* enable mysql, migrate to mysqlconnector, workaround inconsistencies in default schema name for procedures and tables
* add npgsql, fix linqpad6 support
* sybase ASE support
* oracle support
* SQL CE support
* DB2 LUW support
* sap hana support
* informix support
* sqlite support
* sql server support with spatial types
* Fix issues, found during access odbc provider testing:
- remove empty tables from tree (e.g. protected access tables)
- escape xml-unfriendly characters in strings and char values
- fix access ODBC procedure call
* - fix references for v6
- fix <i> styles for v6
- improve \uxxxx formatting
* - fix custom formatters
- fix DB2 types support
* - Firebird, Informix, mysql/mariadb testing
- nullability workaround for provider-specific value types
* - sqlce fixes
- postgresql types support
* sql server fixes
* fix oracle, remove native provider as it currently broken and not really needed
* - add provider path configuration for sqlce/saphana for linqpad6
- moved context element names to constants
- fixed conditional T4 generation for NotifyPropertyChanged (need to be ported to linq2db)
- fixed ui in connection dialog
- changed copyrights to "Linq To DB"
* forgot to add files to previous commit...
* update readme
* - add release notes
- pipelines and nuget files (untested yet)
* fix value formatter
* address code review
* add note about sql server 2000 support
* generate nuget on all branches
* cleanup/build fixes
* fix nuget pack command
* fix artifact publishing
* mkay, file mask not supported
* fix nuspec
* fix connection images location
* disable nuget generation on non-master/release branches
* remove var
Co-authored-by: MaceWindu <MaceWindu@users.noreply.github.com>
2020-07-28 11:15:59 +03:00
|
|
|
|
<Nullable>enable</Nullable>
|
2021-11-21 19:32:06 +03:00
|
|
|
|
<!--https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/compiler-options/errors-warnings#warninglevel-->
|
|
|
|
|
<WarningLevel>9999</WarningLevel>
|
work on linqpad6 support (#32)
* work on linqpad6 support
* fix appveyor
* remove unneeded dll's
* fix assembly loading in linqpad, missing minor
* switch to linq2db version 3
* work on linq2db 3.0 support
* C# 8 NRT migration, enable access oledb/odbc + firebird drivers (more coming soon)
* remove debug code
* enable mysql, migrate to mysqlconnector, workaround inconsistencies in default schema name for procedures and tables
* add npgsql, fix linqpad6 support
* sybase ASE support
* oracle support
* SQL CE support
* DB2 LUW support
* sap hana support
* informix support
* sqlite support
* sql server support with spatial types
* Fix issues, found during access odbc provider testing:
- remove empty tables from tree (e.g. protected access tables)
- escape xml-unfriendly characters in strings and char values
- fix access ODBC procedure call
* - fix references for v6
- fix <i> styles for v6
- improve \uxxxx formatting
* - fix custom formatters
- fix DB2 types support
* - Firebird, Informix, mysql/mariadb testing
- nullability workaround for provider-specific value types
* - sqlce fixes
- postgresql types support
* sql server fixes
* fix oracle, remove native provider as it currently broken and not really needed
* - add provider path configuration for sqlce/saphana for linqpad6
- moved context element names to constants
- fixed conditional T4 generation for NotifyPropertyChanged (need to be ported to linq2db)
- fixed ui in connection dialog
- changed copyrights to "Linq To DB"
* forgot to add files to previous commit...
* update readme
* - add release notes
- pipelines and nuget files (untested yet)
* fix value formatter
* address code review
* add note about sql server 2000 support
* generate nuget on all branches
* cleanup/build fixes
* fix nuget pack command
* fix artifact publishing
* mkay, file mask not supported
* fix nuspec
* fix connection images location
* disable nuget generation on non-master/release branches
* remove var
Co-authored-by: MaceWindu <MaceWindu@users.noreply.github.com>
2020-07-28 11:15:59 +03:00
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
2021-11-21 19:32:06 +03:00
|
|
|
|
<Features>strict</Features>
|
2021-03-12 17:00:44 +03:00
|
|
|
|
|
|
|
|
|
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
|
|
|
|
|
|
|
|
|
|
<MSBuildWarningsAsMessages>MSB3270</MSBuildWarningsAsMessages>
|
2018-12-15 18:44:03 +03:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2021-03-12 17:00:44 +03:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<AnalysisLevel>preview</AnalysisLevel>
|
|
|
|
|
<EnableNETAnalyzers>true</EnableNETAnalyzers>
|
|
|
|
|
<RunAnalyzers>true</RunAnalyzers>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(TargetFramework)' == 'net461'">
|
work on linqpad6 support (#32)
* work on linqpad6 support
* fix appveyor
* remove unneeded dll's
* fix assembly loading in linqpad, missing minor
* switch to linq2db version 3
* work on linq2db 3.0 support
* C# 8 NRT migration, enable access oledb/odbc + firebird drivers (more coming soon)
* remove debug code
* enable mysql, migrate to mysqlconnector, workaround inconsistencies in default schema name for procedures and tables
* add npgsql, fix linqpad6 support
* sybase ASE support
* oracle support
* SQL CE support
* DB2 LUW support
* sap hana support
* informix support
* sqlite support
* sql server support with spatial types
* Fix issues, found during access odbc provider testing:
- remove empty tables from tree (e.g. protected access tables)
- escape xml-unfriendly characters in strings and char values
- fix access ODBC procedure call
* - fix references for v6
- fix <i> styles for v6
- improve \uxxxx formatting
* - fix custom formatters
- fix DB2 types support
* - Firebird, Informix, mysql/mariadb testing
- nullability workaround for provider-specific value types
* - sqlce fixes
- postgresql types support
* sql server fixes
* fix oracle, remove native provider as it currently broken and not really needed
* - add provider path configuration for sqlce/saphana for linqpad6
- moved context element names to constants
- fixed conditional T4 generation for NotifyPropertyChanged (need to be ported to linq2db)
- fixed ui in connection dialog
- changed copyrights to "Linq To DB"
* forgot to add files to previous commit...
* update readme
* - add release notes
- pipelines and nuget files (untested yet)
* fix value formatter
* address code review
* add note about sql server 2000 support
* generate nuget on all branches
* cleanup/build fixes
* fix nuget pack command
* fix artifact publishing
* mkay, file mask not supported
* fix nuspec
* fix connection images location
* disable nuget generation on non-master/release branches
* remove var
Co-authored-by: MaceWindu <MaceWindu@users.noreply.github.com>
2020-07-28 11:15:59 +03:00
|
|
|
|
<SignAssembly>true</SignAssembly>
|
|
|
|
|
<DelaySign>false</DelaySign>
|
|
|
|
|
</PropertyGroup>
|
2021-11-21 19:32:06 +03:00
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(TargetFramework)' != 'net461'">
|
work on linqpad6 support (#32)
* work on linqpad6 support
* fix appveyor
* remove unneeded dll's
* fix assembly loading in linqpad, missing minor
* switch to linq2db version 3
* work on linq2db 3.0 support
* C# 8 NRT migration, enable access oledb/odbc + firebird drivers (more coming soon)
* remove debug code
* enable mysql, migrate to mysqlconnector, workaround inconsistencies in default schema name for procedures and tables
* add npgsql, fix linqpad6 support
* sybase ASE support
* oracle support
* SQL CE support
* DB2 LUW support
* sap hana support
* informix support
* sqlite support
* sql server support with spatial types
* Fix issues, found during access odbc provider testing:
- remove empty tables from tree (e.g. protected access tables)
- escape xml-unfriendly characters in strings and char values
- fix access ODBC procedure call
* - fix references for v6
- fix <i> styles for v6
- improve \uxxxx formatting
* - fix custom formatters
- fix DB2 types support
* - Firebird, Informix, mysql/mariadb testing
- nullability workaround for provider-specific value types
* - sqlce fixes
- postgresql types support
* sql server fixes
* fix oracle, remove native provider as it currently broken and not really needed
* - add provider path configuration for sqlce/saphana for linqpad6
- moved context element names to constants
- fixed conditional T4 generation for NotifyPropertyChanged (need to be ported to linq2db)
- fixed ui in connection dialog
- changed copyrights to "Linq To DB"
* forgot to add files to previous commit...
* update readme
* - add release notes
- pipelines and nuget files (untested yet)
* fix value formatter
* address code review
* add note about sql server 2000 support
* generate nuget on all branches
* cleanup/build fixes
* fix nuget pack command
* fix artifact publishing
* mkay, file mask not supported
* fix nuspec
* fix connection images location
* disable nuget generation on non-master/release branches
* remove var
Co-authored-by: MaceWindu <MaceWindu@users.noreply.github.com>
2020-07-28 11:15:59 +03:00
|
|
|
|
<DefineConstants>NETCORE</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
2021-11-21 19:32:06 +03:00
|
|
|
|
|
2018-12-15 18:44:03 +03:00
|
|
|
|
<ItemGroup>
|
2021-03-12 17:00:44 +03:00
|
|
|
|
<PackageReference Include="LINQPad.Reference" />
|
|
|
|
|
<PackageReference Include="linq2db" />
|
|
|
|
|
<PackageReference Include="Humanizer.Core" />
|
|
|
|
|
<PackageReference Include="CodeJam" />
|
|
|
|
|
|
|
|
|
|
<PackageReference Include="FirebirdSql.Data.FirebirdClient" />
|
|
|
|
|
<PackageReference Include="MySqlConnector" />
|
|
|
|
|
<PackageReference Include="AdoNetCore.AseClient" />
|
2021-11-21 19:32:06 +03:00
|
|
|
|
<PackageReference Include="System.Data.SQLite.Core" />
|
2021-03-12 17:00:44 +03:00
|
|
|
|
|
|
|
|
|
<PackageReference Include="System.Data.SqlClient" />
|
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" />
|
|
|
|
|
<PackageReference Include="Npgsql" />
|
2018-12-15 18:44:03 +03:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-03-12 17:00:44 +03:00
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'net461'">
|
2018-12-15 18:44:03 +03:00
|
|
|
|
<Reference Include="Microsoft.CSharp" />
|
|
|
|
|
<Reference Include="System.Configuration" />
|
work on linqpad6 support (#32)
* work on linqpad6 support
* fix appveyor
* remove unneeded dll's
* fix assembly loading in linqpad, missing minor
* switch to linq2db version 3
* work on linq2db 3.0 support
* C# 8 NRT migration, enable access oledb/odbc + firebird drivers (more coming soon)
* remove debug code
* enable mysql, migrate to mysqlconnector, workaround inconsistencies in default schema name for procedures and tables
* add npgsql, fix linqpad6 support
* sybase ASE support
* oracle support
* SQL CE support
* DB2 LUW support
* sap hana support
* informix support
* sqlite support
* sql server support with spatial types
* Fix issues, found during access odbc provider testing:
- remove empty tables from tree (e.g. protected access tables)
- escape xml-unfriendly characters in strings and char values
- fix access ODBC procedure call
* - fix references for v6
- fix <i> styles for v6
- improve \uxxxx formatting
* - fix custom formatters
- fix DB2 types support
* - Firebird, Informix, mysql/mariadb testing
- nullability workaround for provider-specific value types
* - sqlce fixes
- postgresql types support
* sql server fixes
* fix oracle, remove native provider as it currently broken and not really needed
* - add provider path configuration for sqlce/saphana for linqpad6
- moved context element names to constants
- fixed conditional T4 generation for NotifyPropertyChanged (need to be ported to linq2db)
- fixed ui in connection dialog
- changed copyrights to "Linq To DB"
* forgot to add files to previous commit...
* update readme
* - add release notes
- pipelines and nuget files (untested yet)
* fix value formatter
* address code review
* add note about sql server 2000 support
* generate nuget on all branches
* cleanup/build fixes
* fix nuget pack command
* fix artifact publishing
* mkay, file mask not supported
* fix nuspec
* fix connection images location
* disable nuget generation on non-master/release branches
* remove var
Co-authored-by: MaceWindu <MaceWindu@users.noreply.github.com>
2020-07-28 11:15:59 +03:00
|
|
|
|
|
2021-03-12 17:00:44 +03:00
|
|
|
|
<PackageReference Include="System.ValueTuple" />
|
|
|
|
|
<PackageReference Include="System.Threading.Tasks.Extensions" />
|
|
|
|
|
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" />
|
|
|
|
|
<PackageReference Include="System.Memory" />
|
|
|
|
|
<PackageReference Include="System.Buffers" />
|
|
|
|
|
<PackageReference Include="Oracle.ManagedDataAccess" />
|
2021-11-21 19:32:06 +03:00
|
|
|
|
<PackageReference Include="IBM.Data.DB.Provider" GeneratePathProperty="true" />
|
|
|
|
|
<Reference Include="IBM.Data.DB2">
|
|
|
|
|
<HintPath>$(PkgIBM_Data_DB_Provider)\build\net451\x86\IBM.Data.DB2.dll</HintPath>
|
|
|
|
|
</Reference>
|
work on linqpad6 support (#32)
* work on linqpad6 support
* fix appveyor
* remove unneeded dll's
* fix assembly loading in linqpad, missing minor
* switch to linq2db version 3
* work on linq2db 3.0 support
* C# 8 NRT migration, enable access oledb/odbc + firebird drivers (more coming soon)
* remove debug code
* enable mysql, migrate to mysqlconnector, workaround inconsistencies in default schema name for procedures and tables
* add npgsql, fix linqpad6 support
* sybase ASE support
* oracle support
* SQL CE support
* DB2 LUW support
* sap hana support
* informix support
* sqlite support
* sql server support with spatial types
* Fix issues, found during access odbc provider testing:
- remove empty tables from tree (e.g. protected access tables)
- escape xml-unfriendly characters in strings and char values
- fix access ODBC procedure call
* - fix references for v6
- fix <i> styles for v6
- improve \uxxxx formatting
* - fix custom formatters
- fix DB2 types support
* - Firebird, Informix, mysql/mariadb testing
- nullability workaround for provider-specific value types
* - sqlce fixes
- postgresql types support
* sql server fixes
* fix oracle, remove native provider as it currently broken and not really needed
* - add provider path configuration for sqlce/saphana for linqpad6
- moved context element names to constants
- fixed conditional T4 generation for NotifyPropertyChanged (need to be ported to linq2db)
- fixed ui in connection dialog
- changed copyrights to "Linq To DB"
* forgot to add files to previous commit...
* update readme
* - add release notes
- pipelines and nuget files (untested yet)
* fix value formatter
* address code review
* add note about sql server 2000 support
* generate nuget on all branches
* cleanup/build fixes
* fix nuget pack command
* fix artifact publishing
* mkay, file mask not supported
* fix nuspec
* fix connection images location
* disable nuget generation on non-master/release branches
* remove var
Co-authored-by: MaceWindu <MaceWindu@users.noreply.github.com>
2020-07-28 11:15:59 +03:00
|
|
|
|
|
2021-03-12 17:00:44 +03:00
|
|
|
|
<!--<PackageReference Include="linq2db4iSeries" />-->
|
|
|
|
|
<PackageReference Include="Microsoft.SqlServer.Types" />
|
work on linqpad6 support (#32)
* work on linqpad6 support
* fix appveyor
* remove unneeded dll's
* fix assembly loading in linqpad, missing minor
* switch to linq2db version 3
* work on linq2db 3.0 support
* C# 8 NRT migration, enable access oledb/odbc + firebird drivers (more coming soon)
* remove debug code
* enable mysql, migrate to mysqlconnector, workaround inconsistencies in default schema name for procedures and tables
* add npgsql, fix linqpad6 support
* sybase ASE support
* oracle support
* SQL CE support
* DB2 LUW support
* sap hana support
* informix support
* sqlite support
* sql server support with spatial types
* Fix issues, found during access odbc provider testing:
- remove empty tables from tree (e.g. protected access tables)
- escape xml-unfriendly characters in strings and char values
- fix access ODBC procedure call
* - fix references for v6
- fix <i> styles for v6
- improve \uxxxx formatting
* - fix custom formatters
- fix DB2 types support
* - Firebird, Informix, mysql/mariadb testing
- nullability workaround for provider-specific value types
* - sqlce fixes
- postgresql types support
* sql server fixes
* fix oracle, remove native provider as it currently broken and not really needed
* - add provider path configuration for sqlce/saphana for linqpad6
- moved context element names to constants
- fixed conditional T4 generation for NotifyPropertyChanged (need to be ported to linq2db)
- fixed ui in connection dialog
- changed copyrights to "Linq To DB"
* forgot to add files to previous commit...
* update readme
* - add release notes
- pipelines and nuget files (untested yet)
* fix value formatter
* address code review
* add note about sql server 2000 support
* generate nuget on all branches
* cleanup/build fixes
* fix nuget pack command
* fix artifact publishing
* mkay, file mask not supported
* fix nuspec
* fix connection images location
* disable nuget generation on non-master/release branches
* remove var
Co-authored-by: MaceWindu <MaceWindu@users.noreply.github.com>
2020-07-28 11:15:59 +03:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-11-21 19:32:06 +03:00
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' != 'net461' ">
|
2021-03-12 17:00:44 +03:00
|
|
|
|
<PackageReference Include="System.Configuration.ConfigurationManager" />
|
|
|
|
|
|
|
|
|
|
<PackageReference Include="System.Data.Odbc" />
|
|
|
|
|
<PackageReference Include="System.Data.OleDb" />
|
|
|
|
|
<PackageReference Include="Oracle.ManagedDataAccess.Core" />
|
|
|
|
|
<PackageReference Include="IBM.Data.DB2.Core" />
|
|
|
|
|
<PackageReference Include="dotMorten.Microsoft.SqlServer.Types" />
|
2021-04-24 18:12:00 +03:00
|
|
|
|
<PackageReference Include="System.Text.Json" />
|
2018-12-15 18:44:03 +03:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="Connection.png">
|
2021-11-21 19:32:06 +03:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
2018-12-15 18:44:03 +03:00
|
|
|
|
</None>
|
|
|
|
|
<None Update="ConnectionViewModel.tt">
|
|
|
|
|
<Generator>TextTemplatingFileGenerator</Generator>
|
|
|
|
|
<LastGenOutput>ConnectionViewModel.generated.cs</LastGenOutput>
|
|
|
|
|
</None>
|
|
|
|
|
<None Update="FailedConnection.png">
|
2021-11-21 19:32:06 +03:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
2018-12-15 18:44:03 +03:00
|
|
|
|
</None>
|
|
|
|
|
<None Update="header.xml">
|
2021-11-21 19:32:06 +03:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
2018-12-15 18:44:03 +03:00
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Update="ConnectionViewModel.generated.cs">
|
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
<DependentUpon>ConnectionViewModel.tt</DependentUpon>
|
|
|
|
|
</Compile>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-11-21 19:32:06 +03:00
|
|
|
|
<Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
|
2018-12-15 18:44:03 +03:00
|
|
|
|
</ItemGroup>
|
work on linqpad6 support (#32)
* work on linqpad6 support
* fix appveyor
* remove unneeded dll's
* fix assembly loading in linqpad, missing minor
* switch to linq2db version 3
* work on linq2db 3.0 support
* C# 8 NRT migration, enable access oledb/odbc + firebird drivers (more coming soon)
* remove debug code
* enable mysql, migrate to mysqlconnector, workaround inconsistencies in default schema name for procedures and tables
* add npgsql, fix linqpad6 support
* sybase ASE support
* oracle support
* SQL CE support
* DB2 LUW support
* sap hana support
* informix support
* sqlite support
* sql server support with spatial types
* Fix issues, found during access odbc provider testing:
- remove empty tables from tree (e.g. protected access tables)
- escape xml-unfriendly characters in strings and char values
- fix access ODBC procedure call
* - fix references for v6
- fix <i> styles for v6
- improve \uxxxx formatting
* - fix custom formatters
- fix DB2 types support
* - Firebird, Informix, mysql/mariadb testing
- nullability workaround for provider-specific value types
* - sqlce fixes
- postgresql types support
* sql server fixes
* fix oracle, remove native provider as it currently broken and not really needed
* - add provider path configuration for sqlce/saphana for linqpad6
- moved context element names to constants
- fixed conditional T4 generation for NotifyPropertyChanged (need to be ported to linq2db)
- fixed ui in connection dialog
- changed copyrights to "Linq To DB"
* forgot to add files to previous commit...
* update readme
* - add release notes
- pipelines and nuget files (untested yet)
* fix value formatter
* address code review
* add note about sql server 2000 support
* generate nuget on all branches
* cleanup/build fixes
* fix nuget pack command
* fix artifact publishing
* mkay, file mask not supported
* fix nuspec
* fix connection images location
* disable nuget generation on non-master/release branches
* remove var
Co-authored-by: MaceWindu <MaceWindu@users.noreply.github.com>
2020-07-28 11:15:59 +03:00
|
|
|
|
|
2020-10-09 13:19:22 +03:00
|
|
|
|
<Target Name="PostBuild1" AfterTargets="PostBuildEvent" Condition="'$(TargetFramework)' == 'netcoreapp3.1'">
|
work on linqpad6 support (#32)
* work on linqpad6 support
* fix appveyor
* remove unneeded dll's
* fix assembly loading in linqpad, missing minor
* switch to linq2db version 3
* work on linq2db 3.0 support
* C# 8 NRT migration, enable access oledb/odbc + firebird drivers (more coming soon)
* remove debug code
* enable mysql, migrate to mysqlconnector, workaround inconsistencies in default schema name for procedures and tables
* add npgsql, fix linqpad6 support
* sybase ASE support
* oracle support
* SQL CE support
* DB2 LUW support
* sap hana support
* informix support
* sqlite support
* sql server support with spatial types
* Fix issues, found during access odbc provider testing:
- remove empty tables from tree (e.g. protected access tables)
- escape xml-unfriendly characters in strings and char values
- fix access ODBC procedure call
* - fix references for v6
- fix <i> styles for v6
- improve \uxxxx formatting
* - fix custom formatters
- fix DB2 types support
* - Firebird, Informix, mysql/mariadb testing
- nullability workaround for provider-specific value types
* - sqlce fixes
- postgresql types support
* sql server fixes
* fix oracle, remove native provider as it currently broken and not really needed
* - add provider path configuration for sqlce/saphana for linqpad6
- moved context element names to constants
- fixed conditional T4 generation for NotifyPropertyChanged (need to be ported to linq2db)
- fixed ui in connection dialog
- changed copyrights to "Linq To DB"
* forgot to add files to previous commit...
* update readme
* - add release notes
- pipelines and nuget files (untested yet)
* fix value formatter
* address code review
* add note about sql server 2000 support
* generate nuget on all branches
* cleanup/build fixes
* fix nuget pack command
* fix artifact publishing
* mkay, file mask not supported
* fix nuspec
* fix connection images location
* disable nuget generation on non-master/release branches
* remove var
Co-authored-by: MaceWindu <MaceWindu@users.noreply.github.com>
2020-07-28 11:15:59 +03:00
|
|
|
|
<Exec Command="$(ProjectDir)Pack.bat $(TargetDir) lpx6" />
|
|
|
|
|
</Target>
|
|
|
|
|
|
2021-03-12 17:00:44 +03:00
|
|
|
|
<Target Name="PostBuild2" AfterTargets="CopySQLiteInteropFiles" Condition="'$(TargetFramework)' == 'net461'">
|
work on linqpad6 support (#32)
* work on linqpad6 support
* fix appveyor
* remove unneeded dll's
* fix assembly loading in linqpad, missing minor
* switch to linq2db version 3
* work on linq2db 3.0 support
* C# 8 NRT migration, enable access oledb/odbc + firebird drivers (more coming soon)
* remove debug code
* enable mysql, migrate to mysqlconnector, workaround inconsistencies in default schema name for procedures and tables
* add npgsql, fix linqpad6 support
* sybase ASE support
* oracle support
* SQL CE support
* DB2 LUW support
* sap hana support
* informix support
* sqlite support
* sql server support with spatial types
* Fix issues, found during access odbc provider testing:
- remove empty tables from tree (e.g. protected access tables)
- escape xml-unfriendly characters in strings and char values
- fix access ODBC procedure call
* - fix references for v6
- fix <i> styles for v6
- improve \uxxxx formatting
* - fix custom formatters
- fix DB2 types support
* - Firebird, Informix, mysql/mariadb testing
- nullability workaround for provider-specific value types
* - sqlce fixes
- postgresql types support
* sql server fixes
* fix oracle, remove native provider as it currently broken and not really needed
* - add provider path configuration for sqlce/saphana for linqpad6
- moved context element names to constants
- fixed conditional T4 generation for NotifyPropertyChanged (need to be ported to linq2db)
- fixed ui in connection dialog
- changed copyrights to "Linq To DB"
* forgot to add files to previous commit...
* update readme
* - add release notes
- pipelines and nuget files (untested yet)
* fix value formatter
* address code review
* add note about sql server 2000 support
* generate nuget on all branches
* cleanup/build fixes
* fix nuget pack command
* fix artifact publishing
* mkay, file mask not supported
* fix nuspec
* fix connection images location
* disable nuget generation on non-master/release branches
* remove var
Co-authored-by: MaceWindu <MaceWindu@users.noreply.github.com>
2020-07-28 11:15:59 +03:00
|
|
|
|
<Exec Command="$(ProjectDir)Pack.bat $(TargetDir) lpx" />
|
2018-12-15 18:44:03 +03:00
|
|
|
|
</Target>
|
|
|
|
|
|
2021-11-21 19:32:06 +03:00
|
|
|
|
<!--disable CodeJam transitive dependency polluting global namespace-->
|
|
|
|
|
<Target Name="ChangeAliasesOfBNameAssemblies" BeforeTargets="FindReferenceAssembliesForReferences;ResolveReferences">
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ReferencePath Condition="'%(FileName)' == 'Theraot.Core'">
|
|
|
|
|
<Aliases>unused</Aliases>
|
|
|
|
|
</ReferencePath>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Target>
|
|
|
|
|
|
2018-12-15 18:44:03 +03:00
|
|
|
|
</Project>
|