Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions SQLCheck/SQLCheck/DriverInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -169,13 +169,13 @@ public static DriverInfo GetDriverInfo(string driverName, FileVersionInfo versio
case "SQLOLEDB": return new DriverInfo(driverName, "OLE DB", TLS12, "No", "SQL 7.0 - SQL 2019", "Deprecated", "No");
case "SQLNCLI": return new DriverInfo(driverName, "OLE DB", "No", "No", "SQL 7.0 - SQL 2019", "No", "No");
case "SQLNCLI10": return new DriverInfo(driverName, "OLE DB", TLS12, "No", "SQL 7.0 - SQL 2019", "No", "No");
case "SQLNCLI11": return new DriverInfo(driverName, "OLE DB", TLS12, "No", "SQL 7.0 - SQL 2019", "Yes", "No");
case "SQLNCLI11": return new DriverInfo(driverName, "OLE DB", TLS12, "No", "SQL 7.0 - SQL 2019", "No", "No");
case "MSOLEDBSQL": return new DriverInfo(driverName, "OLE DB", "Yes", "No", "SQL 2005 - SQL 2019", "Yes", "Yes");
case "MSOLEDBSQL19": return new DriverInfo(driverName, "OLE DB", "Yes", TLS13, "SQL 2005 - SQL 2022", "Yes", "Yes");
case "SQL Server": return new DriverInfo(driverName, "ODBC", TLS12, "No", "SQL 7.0 - SQL 2019", "Deprecated", "No");
case "SQL Server Native Client 9.0": return new DriverInfo(driverName, "ODBC", "No", "No", "SQL 7.0 - SQL 2019", "No", "No");
case "SQL Server Native Client 10.0": return new DriverInfo(driverName, "ODBC", TLS12, "No", "SQL 7.0 - SQL 2019", "No", "No");
case "SQL Server Native Client 11.0": return new DriverInfo(driverName, "ODBC", TLS12, "No", "SQL 7.0 - SQL 2019", "Yes", "Yes");
case "SQL Server Native Client 11.0": return new DriverInfo(driverName, "ODBC", TLS12, "No", "SQL 7.0 - SQL 2019", "No", "Yes");
case "ODBC Driver 11 for SQL Server": return new DriverInfo(driverName, "ODBC", TLS12, "No", "SQL 7.0 - SQL 2019", "Yes", "Yes");
case "ODBC Driver 13 for SQL Server": return new DriverInfo(driverName, "ODBC", "Yes", "No", "SQL 7.0 - SQL 2019", "Yes", "Yes");
case "ODBC Driver 17 for SQL Server": return new DriverInfo(driverName, "ODBC", "Yes", "No", "SQL 2005 - SQL 2019", "Yes", "Yes");
Expand Down
4 changes: 2 additions & 2 deletions SQLCheck/SQLCheck/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.1245.0")]
[assembly: AssemblyFileVersion("1.0.1245.0")]
[assembly: AssemblyVersion("1.0.1246.0")]
[assembly: AssemblyFileVersion("1.0.1246.0")]
22 changes: 22 additions & 0 deletions SQLCheck/SQLCheck/SQLCheck.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,21 @@
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
<UpdateEnabled>false</UpdateEnabled>
<UpdateMode>Foreground</UpdateMode>
<UpdateInterval>7</UpdateInterval>
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<IsWebBootstrapper>false</IsWebBootstrapper>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
Expand Down Expand Up @@ -82,5 +97,12 @@
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1</ProductName>
<Install>false</Install>
</BootstrapperPackage>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>