RfidReader
This commit is contained in:
parent
7c1fda5bc4
commit
d0458e85a9
26
RFIDIdReader/RFIDIdReader.sln
Normal file
26
RFIDIdReader/RFIDIdReader.sln
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
|
||||||
|
Microsoft Visual Studio Solution File, Format Version 11.00
|
||||||
|
# Visual Studio 2010
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RFIDIdReader", "RFIDIdReader\RFIDIdReader.csproj", "{F23222A1-AE2D-4782-89F3-5DA054C5FEE1}"
|
||||||
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RfidClass", "RfidClass\RfidClass.csproj", "{2F816B95-069B-4D48-9FBF-9B805A1049A8}"
|
||||||
|
EndProject
|
||||||
|
Global
|
||||||
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
Release|Any CPU = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
|
{F23222A1-AE2D-4782-89F3-5DA054C5FEE1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{F23222A1-AE2D-4782-89F3-5DA054C5FEE1}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{F23222A1-AE2D-4782-89F3-5DA054C5FEE1}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{F23222A1-AE2D-4782-89F3-5DA054C5FEE1}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{2F816B95-069B-4D48-9FBF-9B805A1049A8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{2F816B95-069B-4D48-9FBF-9B805A1049A8}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{2F816B95-069B-4D48-9FBF-9B805A1049A8}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{2F816B95-069B-4D48-9FBF-9B805A1049A8}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
|
HideSolutionNode = FALSE
|
||||||
|
EndGlobalSection
|
||||||
|
EndGlobal
|
40
RFIDIdReader/RFIDIdReader/Program.cs
Normal file
40
RFIDIdReader/RFIDIdReader/Program.cs
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using RfidClass;
|
||||||
|
using System.Threading;
|
||||||
|
|
||||||
|
namespace RFIDIdReader
|
||||||
|
{
|
||||||
|
class Program
|
||||||
|
{
|
||||||
|
private static RFIDReaderClass r;
|
||||||
|
private static bool _stop = false;
|
||||||
|
static void Main(string[] args)
|
||||||
|
{
|
||||||
|
r = new RFIDReaderClass("COM1");
|
||||||
|
Thread t = new Thread(reader);
|
||||||
|
t.Start();
|
||||||
|
while (!t.IsAlive) ;
|
||||||
|
char c = '0';
|
||||||
|
while (c != 'c')
|
||||||
|
{
|
||||||
|
c = Console.ReadKey().KeyChar;
|
||||||
|
}
|
||||||
|
_stop = true;
|
||||||
|
r.abort();
|
||||||
|
Console.WriteLine("program halt");
|
||||||
|
|
||||||
|
}
|
||||||
|
private static void reader()
|
||||||
|
{
|
||||||
|
while (!_stop)
|
||||||
|
{
|
||||||
|
long id = r.readKey();
|
||||||
|
Console.WriteLine(id);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
36
RFIDIdReader/RFIDIdReader/Properties/AssemblyInfo.cs
Normal file
36
RFIDIdReader/RFIDIdReader/Properties/AssemblyInfo.cs
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
using System.Reflection;
|
||||||
|
using System.Runtime.CompilerServices;
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
|
// Allgemeine Informationen über eine Assembly werden über die folgenden
|
||||||
|
// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern,
|
||||||
|
// die mit einer Assembly verknüpft sind.
|
||||||
|
[assembly: AssemblyTitle("RFIDIdReader")]
|
||||||
|
[assembly: AssemblyDescription("")]
|
||||||
|
[assembly: AssemblyConfiguration("")]
|
||||||
|
[assembly: AssemblyCompany("Microsoft")]
|
||||||
|
[assembly: AssemblyProduct("RFIDIdReader")]
|
||||||
|
[assembly: AssemblyCopyright("Copyright © Microsoft 2011")]
|
||||||
|
[assembly: AssemblyTrademark("")]
|
||||||
|
[assembly: AssemblyCulture("")]
|
||||||
|
|
||||||
|
// Durch Festlegen von ComVisible auf "false" werden die Typen in dieser Assembly unsichtbar
|
||||||
|
// für COM-Komponenten. Wenn Sie auf einen Typ in dieser Assembly von
|
||||||
|
// COM zugreifen müssen, legen Sie das ComVisible-Attribut für diesen Typ auf "true" fest.
|
||||||
|
[assembly: ComVisible(false)]
|
||||||
|
|
||||||
|
// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird
|
||||||
|
[assembly: Guid("73e1ffeb-9bf6-4d47-83a6-a62a3d616dc9")]
|
||||||
|
|
||||||
|
// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten:
|
||||||
|
//
|
||||||
|
// Hauptversion
|
||||||
|
// Nebenversion
|
||||||
|
// Buildnummer
|
||||||
|
// Revision
|
||||||
|
//
|
||||||
|
// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
|
||||||
|
// übernehmen, indem Sie "*" eingeben:
|
||||||
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
|
[assembly: AssemblyVersion("1.0.0.0")]
|
||||||
|
[assembly: AssemblyFileVersion("1.0.0.0")]
|
107
RFIDIdReader/RFIDIdReader/RFIDIdReader.csproj
Normal file
107
RFIDIdReader/RFIDIdReader/RFIDIdReader.csproj
Normal file
@ -0,0 +1,107 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup>
|
||||||
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
|
<ProductVersion>9.0.30729</ProductVersion>
|
||||||
|
<SchemaVersion>2.0</SchemaVersion>
|
||||||
|
<ProjectGuid>{F23222A1-AE2D-4782-89F3-5DA054C5FEE1}</ProjectGuid>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||||
|
<RootNamespace>RFIDIdReader</RootNamespace>
|
||||||
|
<AssemblyName>RFIDIdReader</AssemblyName>
|
||||||
|
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
||||||
|
<FileAlignment>512</FileAlignment>
|
||||||
|
<FileUpgradeFlags>
|
||||||
|
</FileUpgradeFlags>
|
||||||
|
<OldToolsVersion>3.5</OldToolsVersion>
|
||||||
|
<UpgradeBackupLocation />
|
||||||
|
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
|
||||||
|
<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' ">
|
||||||
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
<DebugType>full</DebugType>
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
|
<DebugType>pdbonly</DebugType>
|
||||||
|
<Optimize>true</Optimize>
|
||||||
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="System" />
|
||||||
|
<Reference Include="System.Core">
|
||||||
|
<RequiredTargetFramework>3.5</RequiredTargetFramework>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System.Xml.Linq">
|
||||||
|
<RequiredTargetFramework>3.5</RequiredTargetFramework>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System.Data.DataSetExtensions">
|
||||||
|
<RequiredTargetFramework>3.5</RequiredTargetFramework>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System.Data" />
|
||||||
|
<Reference Include="System.Xml" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Include="Program.cs" />
|
||||||
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\RfidClass\RfidClass.csproj">
|
||||||
|
<Project>{2F816B95-069B-4D48-9FBF-9B805A1049A8}</Project>
|
||||||
|
<Name>RfidClass</Name>
|
||||||
|
</ProjectReference>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="app.config" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
|
||||||
|
<Visible>False</Visible>
|
||||||
|
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
|
||||||
|
<Install>false</Install>
|
||||||
|
</BootstrapperPackage>
|
||||||
|
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
|
||||||
|
<Visible>False</Visible>
|
||||||
|
<ProductName>.NET Framework 3.5 SP1</ProductName>
|
||||||
|
<Install>true</Install>
|
||||||
|
</BootstrapperPackage>
|
||||||
|
<BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
|
||||||
|
<Visible>False</Visible>
|
||||||
|
<ProductName>Windows Installer 3.1</ProductName>
|
||||||
|
<Install>true</Install>
|
||||||
|
</BootstrapperPackage>
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||||
|
Other similar extension points exist, see Microsoft.Common.targets.
|
||||||
|
<Target Name="BeforeBuild">
|
||||||
|
</Target>
|
||||||
|
<Target Name="AfterBuild">
|
||||||
|
</Target>
|
||||||
|
-->
|
||||||
|
</Project>
|
13
RFIDIdReader/RFIDIdReader/RFIDIdReader.csproj.user
Normal file
13
RFIDIdReader/RFIDIdReader/RFIDIdReader.csproj.user
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup>
|
||||||
|
<PublishUrlHistory />
|
||||||
|
<InstallUrlHistory />
|
||||||
|
<SupportUrlHistory />
|
||||||
|
<UpdateUrlHistory />
|
||||||
|
<BootstrapperUrlHistory />
|
||||||
|
<ErrorReportUrlHistory />
|
||||||
|
<FallbackCulture>de-DE</FallbackCulture>
|
||||||
|
<VerifyUploadedFiles>false</VerifyUploadedFiles>
|
||||||
|
</PropertyGroup>
|
||||||
|
</Project>
|
3
RFIDIdReader/RFIDIdReader/app.config
Normal file
3
RFIDIdReader/RFIDIdReader/app.config
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<configuration>
|
||||||
|
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0,Profile=Client"/></startup></configuration>
|
36
RFIDIdReader/RfidClass/Properties/AssemblyInfo.cs
Normal file
36
RFIDIdReader/RfidClass/Properties/AssemblyInfo.cs
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
using System.Reflection;
|
||||||
|
using System.Runtime.CompilerServices;
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
|
// Allgemeine Informationen über eine Assembly werden über die folgenden
|
||||||
|
// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern,
|
||||||
|
// die mit einer Assembly verknüpft sind.
|
||||||
|
[assembly: AssemblyTitle("RfidClass")]
|
||||||
|
[assembly: AssemblyDescription("")]
|
||||||
|
[assembly: AssemblyConfiguration("")]
|
||||||
|
[assembly: AssemblyCompany("")]
|
||||||
|
[assembly: AssemblyProduct("RfidClass")]
|
||||||
|
[assembly: AssemblyCopyright("Copyright © 2011")]
|
||||||
|
[assembly: AssemblyTrademark("")]
|
||||||
|
[assembly: AssemblyCulture("")]
|
||||||
|
|
||||||
|
// Durch Festlegen von ComVisible auf "false" werden die Typen in dieser Assembly unsichtbar
|
||||||
|
// für COM-Komponenten. Wenn Sie auf einen Typ in dieser Assembly von
|
||||||
|
// COM zugreifen müssen, legen Sie das ComVisible-Attribut für diesen Typ auf "true" fest.
|
||||||
|
[assembly: ComVisible(false)]
|
||||||
|
|
||||||
|
// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird
|
||||||
|
[assembly: Guid("eb701fb5-14a2-43f9-89c2-527a60f989fd")]
|
||||||
|
|
||||||
|
// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten:
|
||||||
|
//
|
||||||
|
// Hauptversion
|
||||||
|
// Nebenversion
|
||||||
|
// Buildnummer
|
||||||
|
// Revision
|
||||||
|
//
|
||||||
|
// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
|
||||||
|
// übernehmen, indem Sie "*" eingeben:
|
||||||
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
|
[assembly: AssemblyVersion("1.0.0.0")]
|
||||||
|
[assembly: AssemblyFileVersion("1.0.0.0")]
|
100
RFIDIdReader/RfidClass/RFIDReaderClass.cs
Normal file
100
RFIDIdReader/RfidClass/RFIDReaderClass.cs
Normal file
@ -0,0 +1,100 @@
|
|||||||
|
using System;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System.Threading;
|
||||||
|
using System.IO.Ports;
|
||||||
|
using System.Text.RegularExpressions;
|
||||||
|
|
||||||
|
namespace RfidClass
|
||||||
|
{
|
||||||
|
public class RFIDReaderClass
|
||||||
|
{
|
||||||
|
private Thread t;
|
||||||
|
private SerialPort s;
|
||||||
|
private long id;
|
||||||
|
private bool _stop;
|
||||||
|
private Exception e;
|
||||||
|
public RFIDReaderClass(string com)
|
||||||
|
{
|
||||||
|
this.t = new Thread(this.reader);
|
||||||
|
s = new SerialPort(com, 9600, Parity.None, 8, StopBits.One);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void reader()
|
||||||
|
{
|
||||||
|
while (!_stop)
|
||||||
|
{
|
||||||
|
Process r = new Process();
|
||||||
|
r.StartInfo.FileName = "librfid-tool.exe";
|
||||||
|
r.StartInfo.Arguments = "-s";
|
||||||
|
r.StartInfo.UseShellExecute = false;
|
||||||
|
r.StartInfo.RedirectStandardOutput = true;
|
||||||
|
r.StartInfo.RedirectStandardError = true;
|
||||||
|
try
|
||||||
|
{
|
||||||
|
r.Start();
|
||||||
|
}
|
||||||
|
catch (Exception exeption)
|
||||||
|
{
|
||||||
|
this.e = exeption;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
string a = r.StandardOutput.ReadToEnd();
|
||||||
|
string err = r.StandardError.ReadToEnd();
|
||||||
|
if (err.Contains("No OpenPCD found either"))
|
||||||
|
{
|
||||||
|
this.e = new Exception("No OpenPCD found");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (a.Contains("Layer 2 success") && a.Contains("Protocol success"))
|
||||||
|
{
|
||||||
|
string ids = a.Substring(a.IndexOf("):")+2,13);
|
||||||
|
ids = Regex.Replace(ids.Trim(), @"[^0-9a-fA-F]", "");
|
||||||
|
try
|
||||||
|
{
|
||||||
|
this.id = Int64.Parse(ids, System.Globalization.NumberStyles.HexNumber);
|
||||||
|
}
|
||||||
|
catch (Exception exeption)
|
||||||
|
{
|
||||||
|
this.e = exeption;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Thread.Sleep(1000);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public long readKey()
|
||||||
|
{
|
||||||
|
this.t = new Thread(this.reader);
|
||||||
|
this.id = 0;
|
||||||
|
this._stop = false;
|
||||||
|
try
|
||||||
|
{
|
||||||
|
this.s.Open();
|
||||||
|
}
|
||||||
|
catch (Exception exeption)
|
||||||
|
{
|
||||||
|
//throw exeption;
|
||||||
|
}
|
||||||
|
this.t.Start();
|
||||||
|
while (!this.t.IsAlive) ;
|
||||||
|
while (this.t.IsAlive)
|
||||||
|
{
|
||||||
|
if (this.id != 0 || this.e != null)
|
||||||
|
{
|
||||||
|
this._stop = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (this.e != null)
|
||||||
|
{
|
||||||
|
throw this.e;
|
||||||
|
}
|
||||||
|
return this.id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void abort()
|
||||||
|
{
|
||||||
|
this._stop = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
59
RFIDIdReader/RfidClass/RfidClass.csproj
Normal file
59
RFIDIdReader/RfidClass/RfidClass.csproj
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup>
|
||||||
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
|
<ProductVersion>8.0.30703</ProductVersion>
|
||||||
|
<SchemaVersion>2.0</SchemaVersion>
|
||||||
|
<ProjectGuid>{2F816B95-069B-4D48-9FBF-9B805A1049A8}</ProjectGuid>
|
||||||
|
<OutputType>Library</OutputType>
|
||||||
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||||
|
<RootNamespace>RfidClass</RootNamespace>
|
||||||
|
<AssemblyName>RfidClass</AssemblyName>
|
||||||
|
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
||||||
|
<FileAlignment>512</FileAlignment>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
<DebugType>full</DebugType>
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
|
<DebugType>pdbonly</DebugType>
|
||||||
|
<Optimize>true</Optimize>
|
||||||
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="System" />
|
||||||
|
<Reference Include="System.Core" />
|
||||||
|
<Reference Include="System.Xml.Linq" />
|
||||||
|
<Reference Include="System.Data.DataSetExtensions" />
|
||||||
|
<Reference Include="Microsoft.CSharp" />
|
||||||
|
<Reference Include="System.Data" />
|
||||||
|
<Reference Include="System.Xml" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Include="RFIDReaderClass.cs" />
|
||||||
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Content Include="librfid-tool.exe">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Content>
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||||
|
Other similar extension points exist, see Microsoft.Common.targets.
|
||||||
|
<Target Name="BeforeBuild">
|
||||||
|
</Target>
|
||||||
|
<Target Name="AfterBuild">
|
||||||
|
</Target>
|
||||||
|
-->
|
||||||
|
</Project>
|
BIN
RFIDIdReader/RfidClass/bin/Release/RfidClass.dll
Normal file
BIN
RFIDIdReader/RfidClass/bin/Release/RfidClass.dll
Normal file
Binary file not shown.
BIN
RFIDIdReader/RfidClass/bin/Release/librfid-tool.exe
Normal file
BIN
RFIDIdReader/RfidClass/bin/Release/librfid-tool.exe
Normal file
Binary file not shown.
BIN
RFIDIdReader/RfidClass/librfid-tool.exe
Normal file
BIN
RFIDIdReader/RfidClass/librfid-tool.exe
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user