-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMiInput.csproj
59 lines (51 loc) · 2 KB
/
MiInput.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<Authors>Michael Furlong</Authors>
<PackageId>ShardSoft.MiInput</PackageId>
<Description>A basic input manager for use with SFML.Net and XInput.</Description>
<Copyright>Copyright (c) Michael Furlong 2021</Copyright>
<PackageLicenseFile>licence.md</PackageLicenseFile>
<PackageProjectUrl>https://github.com/BrokenShards/MiInput</PackageProjectUrl>
<Version>1.0.0</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>bin\Debug</OutputPath>
<DocumentationFile>bin\Debug\MiInput.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>bin\Release</OutputPath>
<DocumentationFile>bin\Release\MiInput.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Dependencies\**" />
<Compile Remove="MiInputTest\**" />
<Compile Remove="XInputDotNetPure\**" />
<Compile Remove="XInputInterface\**" />
<EmbeddedResource Remove="Dependencies\**" />
<EmbeddedResource Remove="MiInputTest\**" />
<EmbeddedResource Remove="XInputDotNetPure\**" />
<EmbeddedResource Remove="XInputInterface\**" />
<None Remove="Dependencies\**" />
<None Remove="MiInputTest\**" />
<None Remove="XInputDotNetPure\**" />
<None Remove="XInputInterface\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="SFML.Net" Version="2.5.0" />
<PackageReference Include="ShardSoft.MiCore" Version="1.0.0" />
</ItemGroup>
<ItemGroup>
<Reference Include="XInputDotNetPure">
<HintPath>Dependencies\XInputDotNetPure.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Include="licence.md">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>