-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathBCI2000RemoteNET.csproj
More file actions
34 lines (31 loc) · 1007 Bytes
/
BCI2000RemoteNET.csproj
File metadata and controls
34 lines (31 loc) · 1007 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>1.0.0-b3</Version>
<Authors>Ty Butler</Authors>
<Company>BCI2000</Company>
<Product />
<Description>Interface for controlling BCI2000 remotely.</Description>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<RepositoryUrl>https://github.com/neurotechcenter/BCI2000RemoteNET</RepositoryUrl>
<PackageIcon>prompt256.png</PackageIcon>
<PackageIconUrl />
<RepositoryType>Git</RepositoryType>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<None Include="LICENSE.md">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="prompt256.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<Content Include="README.md">
<Pack>true</Pack>
<PackagePath>\</PackagePath>
</Content>
</ItemGroup>
</Project>