-
Notifications
You must be signed in to change notification settings - Fork 11
/
Gorgon.Input.DirectInput.csproj
83 lines (82 loc) · 3.6 KB
/
Gorgon.Input.DirectInput.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<ForceDesignerDpiUnaware>true</ForceDesignerDpiUnaware>
<UseWindowsForms>true</UseWindowsForms>
<ApplicationIcon>Gorgon2.ico</ApplicationIcon>
<Version>4.0.0</Version>
<Authors>Michael Winsor</Authors>
<Company>Tape_Worm</Company>
<Product>Gorgon</Product>
<Description>Functionality to access the various input devices attached to the system.
This assembly contains a plug-in that will use Microsoft DirectInput to allow access to generic joystick/gamepad controllers.</Description>
<Copyright>(C)opyright Tape_Worm, 2020</Copyright>
<PackageLicenseFile>
</PackageLicenseFile>
<PackageProjectUrl>https://www.tape-worm.net</PackageProjectUrl>
<PackageIcon>g.png</PackageIcon>
<RepositoryUrl>https://github.com/Tape-Worm/Gorgon</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<PackageTags>C#, .NET Framework, Direct 3D, SharpDX, Winforms</PackageTags>
<EnableNETAnalyzers>false</EnableNETAnalyzers>
<RootNamespace>Gorgon.Input.DirectInput</RootNamespace>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<SignAssembly>false</SignAssembly>
<AssemblyOriginatorKeyFile>
</AssemblyOriginatorKeyFile>
<DelaySign>false</DelaySign>
<ImplicitUsings>enable</ImplicitUsings>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<FileVersion>4.0.0.0</FileVersion>
</PropertyGroup>
<PropertyGroup>
<EmbeddedResourceUseDependentUponConvention>true</EmbeddedResourceUseDependentUponConvention>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<PlatformTarget>AnyCPU</PlatformTarget>
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<PlatformTarget>AnyCPU</PlatformTarget>
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub">
<Version>8.0.0</Version> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="SharpDX.DirectInput">
<Version>4.2.0</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
<None Include="..\..\Gorgon\g.png">
<Pack>True</Pack>
<PackagePath>
</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Gorgon\Gorgon.Input\Gorgon.Input.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="robocopy "$(TargetDir)\" "$(SolutionDir)PlugIns\Bin\$(ConfigurationName)" $(TargetFileName) $(TargetName).pdb SharpDX*.dll System.Management.dll /Z /R:3 /W:3

REM Because Robocopy trips up visual studio with its return codes.

IF %25ERRORLEVEL%25 LSS 8 EXIT 0" />
</Target>
</Project>