34 lines
2.0 KiB
XML
Executable File
34 lines
2.0 KiB
XML
Executable File
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFrameworks>netstandard2.0;net461</TargetFrameworks>
|
|
<PackageVersion>1.3.0-beta4</PackageVersion>
|
|
<PackageId>MatFileHandler</PackageId>
|
|
<Title>A library for reading and writing MATLAB .mat files.</Title>
|
|
<Authors>Alexander Luzgarev</Authors>
|
|
<Description>MatFileHandler provides a simple interface for reading and writing MATLAB .mat files (of so-called "Level 5") and extracting the contents of numerical arrays, logical arrays, sparse arrays, char arrays, cell arrays and structure arrays.</Description>
|
|
<Copyright>Copyright 2017-2018 Alexander Luzgarev</Copyright>
|
|
<PackageLicenseUrl>https://raw.githubusercontent.com/mahalex/MatFileHandler/master/LICENSE.md</PackageLicenseUrl>
|
|
<PackageProjectUrl>https://github.com/mahalex/MatFileHandler</PackageProjectUrl>
|
|
<PackageReleaseNotes>First release.</PackageReleaseNotes>
|
|
<PackageTags>Matlab</PackageTags>
|
|
<RepositoryUrl>https://github.com/mahalex/MatFileHandler</RepositoryUrl>
|
|
<OutputPath>bin\$(Configuration)\</OutputPath>
|
|
<DocumentationFile>$(OutputPath)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<CodeAnalysisRuleSet>..\MatFileHandler.ruleset</CodeAnalysisRuleSet>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<CodeAnalysisRuleSet>..\MatFileHandler.ruleset</CodeAnalysisRuleSet>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<AdditionalFiles Include="..\stylecop.json" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.1.0-beta004">
|
|
<PrivateAssets>All</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="System.ValueTuple" Version="4.4.0" Condition="'$(TargetFramework)' == 'net461'" />
|
|
</ItemGroup>
|
|
</Project> |