Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
initial
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanMeijer committed Sep 5, 2024
0 parents commit 5ed878b
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
bin/
obj/
/packages/
riderModule.iml
/_ReSharper.Caches/
16 changes: 16 additions & 0 deletions UsbDeviceReader.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@

Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UsbDeviceReader", "UsbDeviceReader\UsbDeviceReader.csproj", "{AD114F11-6891-464D-9189-1466B8905734}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{AD114F11-6891-464D-9189-1466B8905734}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{AD114F11-6891-464D-9189-1466B8905734}.Debug|Any CPU.Build.0 = Debug|Any CPU
{AD114F11-6891-464D-9189-1466B8905734}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AD114F11-6891-464D-9189-1466B8905734}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
3 changes: 3 additions & 0 deletions UsbDeviceReader/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
// See https://aka.ms/new-console-template for more information

Console.WriteLine("Hello, World!");
10 changes: 10 additions & 0 deletions UsbDeviceReader/UsbDeviceReader.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

</Project>
7 changes: 7 additions & 0 deletions global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"sdk": {
"version": "6.0.0",
"rollForward": "latestMinor",
"allowPrerelease": false
}
}

0 comments on commit 5ed878b

Please sign in to comment.