-
Notifications
You must be signed in to change notification settings - Fork 11
/
Gorgon.Input.csproj
75 lines (75 loc) · 3.03 KB
/
Gorgon.Input.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<ForceDesignerDpiUnaware>true</ForceDesignerDpiUnaware>
<ApplicationIcon>Gorgon2.ico</ApplicationIcon>
<UseWindowsForms>true</UseWindowsForms>
<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.</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</RootNamespace>
<NeutralLanguage>
</NeutralLanguage>
<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'">
<DocumentationFile>bin\Release\Gorgon.Input.xml</DocumentationFile>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>bin\Debug\Gorgon.Input.xml</DocumentationFile>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<None Include="..\g.png" Link="g.png" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Gorgon.Windows\Gorgon.Windows.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub">
<Version>8.0.0</Version>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</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>
</Project>