mirror of
https://github.com/DarthAffe/OBD.NET.git
synced 2025-12-12 16:58:30 +00:00
Merge pull request #28 from DarthAffe/NamingFix
Fixed weird naming mistake in some projects (ODB instead of OBD)
This commit is contained in:
commit
6f0ec9b4e1
@ -54,9 +54,9 @@
|
|||||||
<Project>{D985B70E-CDF3-4CF1-AB5D-8D19C7FE7B31}</Project>
|
<Project>{D985B70E-CDF3-4CF1-AB5D-8D19C7FE7B31}</Project>
|
||||||
<Name>OBD.NET.Common</Name>
|
<Name>OBD.NET.Common</Name>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
<ProjectReference Include="..\ODB.NET.Desktop\ODB.NET.Desktop.csproj">
|
<ProjectReference Include="..\OBD.NET.Desktop\OBD.NET.Desktop.csproj">
|
||||||
<Project>{14CB98E1-95DE-4923-8896-FDF5171AA49E}</Project>
|
<Project>{14CB98E1-95DE-4923-8896-FDF5171AA49E}</Project>
|
||||||
<Name>ODB.NET.Desktop</Name>
|
<Name>OBD.NET.Desktop</Name>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
@ -5,10 +5,10 @@ using OBD.NET.Common.Devices;
|
|||||||
using OBD.NET.Common.Extensions;
|
using OBD.NET.Common.Extensions;
|
||||||
using OBD.NET.Common.Logging;
|
using OBD.NET.Common.Logging;
|
||||||
using OBD.NET.Common.OBDData;
|
using OBD.NET.Common.OBDData;
|
||||||
using ODB.NET.Desktop.Communication;
|
using OBD.NET.Desktop.Communication;
|
||||||
using ODB.NET.Desktop.Logging;
|
using OBD.NET.Desktop.Logging;
|
||||||
|
|
||||||
namespace ODB.NET.ConsoleClient
|
namespace OBD.NET.ConsoleClient
|
||||||
{
|
{
|
||||||
public class Program
|
public class Program
|
||||||
{
|
{
|
||||||
@ -4,11 +4,11 @@ using System.Runtime.InteropServices;
|
|||||||
// General Information about an assembly is controlled through the following
|
// General Information about an assembly is controlled through the following
|
||||||
// set of attributes. Change these attribute values to modify the information
|
// set of attributes. Change these attribute values to modify the information
|
||||||
// associated with an assembly.
|
// associated with an assembly.
|
||||||
[assembly: AssemblyTitle("ODB.NET.ConsoleClient")]
|
[assembly: AssemblyTitle("OBD.NET.ConsoleClient")]
|
||||||
[assembly: AssemblyDescription("")]
|
[assembly: AssemblyDescription("")]
|
||||||
[assembly: AssemblyConfiguration("")]
|
[assembly: AssemblyConfiguration("")]
|
||||||
[assembly: AssemblyCompany("")]
|
[assembly: AssemblyCompany("")]
|
||||||
[assembly: AssemblyProduct("ODB.NET.ConsoleClient")]
|
[assembly: AssemblyProduct("OBD.NET.ConsoleClient")]
|
||||||
[assembly: AssemblyCopyright("Copyright © 2017")]
|
[assembly: AssemblyCopyright("Copyright © 2017")]
|
||||||
[assembly: AssemblyTrademark("")]
|
[assembly: AssemblyTrademark("")]
|
||||||
[assembly: AssemblyCulture("")]
|
[assembly: AssemblyCulture("")]
|
||||||
@ -21,7 +21,7 @@ using System.Runtime.InteropServices;
|
|||||||
using System.Threading;
|
using System.Threading;
|
||||||
|
|
||||||
// Source: http://antanas.veiverys.com/mono-serialport-datareceived-event-workaround-using-a-derived-class/
|
// Source: http://antanas.veiverys.com/mono-serialport-datareceived-event-workaround-using-a-derived-class/
|
||||||
namespace ODB.NET.Desktop.Communication
|
namespace OBD.NET.Desktop.Communication
|
||||||
{
|
{
|
||||||
[DesignerCategory("Code")]
|
[DesignerCategory("Code")]
|
||||||
public class EnhancedSerialPort : SerialPort
|
public class EnhancedSerialPort : SerialPort
|
||||||
@ -6,7 +6,7 @@ using System.Threading;
|
|||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using OBD.NET.Common.Communication;
|
using OBD.NET.Common.Communication;
|
||||||
|
|
||||||
namespace ODB.NET.Desktop.Communication
|
namespace OBD.NET.Desktop.Communication
|
||||||
{
|
{
|
||||||
public class SerialConnection : ISerialConnection
|
public class SerialConnection : ISerialConnection
|
||||||
{
|
{
|
||||||
@ -1,7 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
using OBD.NET.Common.Logging;
|
using OBD.NET.Common.Logging;
|
||||||
|
|
||||||
namespace ODB.NET.Desktop.Logging
|
namespace OBD.NET.Desktop.Logging
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Simple console logger
|
/// Simple console logger
|
||||||
@ -5,11 +5,11 @@ VisualStudioVersion = 15.0.26403.7
|
|||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OBD.NET.Common", "OBD.NET.Common\OBD.NET.Common.csproj", "{D985B70E-CDF3-4CF1-AB5D-8D19C7FE7B31}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OBD.NET.Common", "OBD.NET.Common\OBD.NET.Common.csproj", "{D985B70E-CDF3-4CF1-AB5D-8D19C7FE7B31}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ODB.NET.Desktop", "ODB.NET.Desktop\ODB.NET.Desktop.csproj", "{14CB98E1-95DE-4923-8896-FDF5171AA49E}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OBD.NET.Desktop", "OBD.NET.Desktop\OBD.NET.Desktop.csproj", "{14CB98E1-95DE-4923-8896-FDF5171AA49E}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OBD.NET.Universal", "OBD.NET.Universal\OBD.NET.Universal.csproj", "{E0EAFF82-C514-4827-8F49-F1928EBA8E73}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OBD.NET.Universal", "OBD.NET.Universal\OBD.NET.Universal.csproj", "{E0EAFF82-C514-4827-8F49-F1928EBA8E73}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ODB.NET.ConsoleClient", "ODB.NET.ConsoleClient\ODB.NET.ConsoleClient.csproj", "{8F8EC5D5-94BD-47CF-9714-CA8C0198BDDC}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OBD.NET.ConsoleClient", "OBD.NET.ConsoleClient\OBD.NET.ConsoleClient.csproj", "{8F8EC5D5-94BD-47CF-9714-CA8C0198BDDC}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user