Skip to content

Commit fe0ef42

Browse files
committed
Create TabletDriverFilters project
1 parent 03f26db commit fe0ef42

4 files changed

Lines changed: 51 additions & 0 deletions

File tree

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*/bin/
2+
*/obj/
3+
build/
4+
.vscode/

TabletDriverFilters.sln

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.26124.0
5+
MinimumVisualStudioVersion = 15.0.26124.0
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TabletDriverFilters", "TabletDriverFilters\TabletDriverFilters.csproj", "{EBD5C9CA-5B65-40B9-8923-696819BEF243}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Debug|x64 = Debug|x64
12+
Debug|x86 = Debug|x86
13+
Release|Any CPU = Release|Any CPU
14+
Release|x64 = Release|x64
15+
Release|x86 = Release|x86
16+
EndGlobalSection
17+
GlobalSection(SolutionProperties) = preSolution
18+
HideSolutionNode = FALSE
19+
EndGlobalSection
20+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
21+
{EBD5C9CA-5B65-40B9-8923-696819BEF243}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
22+
{EBD5C9CA-5B65-40B9-8923-696819BEF243}.Debug|Any CPU.Build.0 = Debug|Any CPU
23+
{EBD5C9CA-5B65-40B9-8923-696819BEF243}.Debug|x64.ActiveCfg = Debug|Any CPU
24+
{EBD5C9CA-5B65-40B9-8923-696819BEF243}.Debug|x64.Build.0 = Debug|Any CPU
25+
{EBD5C9CA-5B65-40B9-8923-696819BEF243}.Debug|x86.ActiveCfg = Debug|Any CPU
26+
{EBD5C9CA-5B65-40B9-8923-696819BEF243}.Debug|x86.Build.0 = Debug|Any CPU
27+
{EBD5C9CA-5B65-40B9-8923-696819BEF243}.Release|Any CPU.ActiveCfg = Release|Any CPU
28+
{EBD5C9CA-5B65-40B9-8923-696819BEF243}.Release|Any CPU.Build.0 = Release|Any CPU
29+
{EBD5C9CA-5B65-40B9-8923-696819BEF243}.Release|x64.ActiveCfg = Release|Any CPU
30+
{EBD5C9CA-5B65-40B9-8923-696819BEF243}.Release|x64.Build.0 = Release|Any CPU
31+
{EBD5C9CA-5B65-40B9-8923-696819BEF243}.Release|x86.ActiveCfg = Release|Any CPU
32+
{EBD5C9CA-5B65-40B9-8923-696819BEF243}.Release|x86.Build.0 = Release|Any CPU
33+
EndGlobalSection
34+
EndGlobal
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp3.1</TargetFramework>
5+
</PropertyGroup>
6+
7+
<ItemGroup>
8+
<PackageReference Include="TabletDriverPlugin" Version="0.3.0" />
9+
</ItemGroup>
10+
11+
</Project>

build.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
rm -rf ./bin
2+
dotnet build */*.csproj -f netcoreapp3.1 -o ./build

0 commit comments

Comments
 (0)