-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRapidField.SolidInstruments.SignalProcessing.csproj
More file actions
44 lines (44 loc) · 2.7 KB
/
RapidField.SolidInstruments.SignalProcessing.csproj
File metadata and controls
44 lines (44 loc) · 2.7 KB
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
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (c) RapidField LLC. Licensed under the MIT License. See LICENSE.txt in the project root for license information.
-->
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Authors>Solid Instruments contributors</Authors>
<Company>RapidField</Company>
<Copyright>Copyright (c) RapidField LLC. All rights reserved.</Copyright>
<Product>Solid Instruments</Product>
<Description>This library facilitates digital signal processing.</Description>
<Version>$(BuildVersion)</Version>
<TargetFramework>netstandard2.1</TargetFramework>
<LangVersion>latest</LangVersion>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/rapidfield/solid-instruments</RepositoryUrl>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageProjectUrl>https://www.solidinstruments.com</PackageProjectUrl>
<PackageIcon>Icon.SignalProcessing.128w.png</PackageIcon>
<PackageTags>solid-instruments;signal-processing;dsp</PackageTags>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>bin\Debug\netstandard2.1\RapidField.SolidInstruments.SignalProcessing.xml</DocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>bin\Release\netstandard2.1\RapidField.SolidInstruments.SignalProcessing.xml</DocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
</PropertyGroup>
<ItemGroup>
<Content Include="..\..\doc\images\Icon.SignalProcessing.128w.png" Link="Icon.SignalProcessing.128w.png" PackagePath="" />
<Content Include="..\..\doc\images\Label.SignalProcessing.300w.png" Link="Label.SignalProcessing.300w.png" PackagePath="" />
<Content Include="..\..\LICENSE.txt" Link="LICENSE.txt" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\RapidField.SolidInstruments.Core\RapidField.SolidInstruments.Core.csproj" Version="$(BuildVersion)" />
<ProjectReference Include="..\RapidField.SolidInstruments.Mathematics\RapidField.SolidInstruments.Mathematics.csproj" Version="$(BuildVersion)" />
<ProjectReference Include="..\RapidField.SolidInstruments.TextEncoding\RapidField.SolidInstruments.TextEncoding.csproj" Version="$(BuildVersion)" />
</ItemGroup>
</Project>