|
|
|
@ -1,36 +1,52 @@ |
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
|
|
|
|
|
|
<?xml version="1.0" encoding="utf-8"?> |
|
|
|
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|
|
|
|
<PropertyGroup> |
|
|
|
|
<TargetFrameworks>netstandard1.3;net4.5</TargetFrameworks> |
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile> |
|
|
|
|
<NoWarn>1701;1702;CS1591</NoWarn> |
|
|
|
|
</PropertyGroup> |
|
|
|
|
|
|
|
|
|
<PropertyGroup> |
|
|
|
|
<PackageId>KaitaiStruct.Runtime.CSharp</PackageId> |
|
|
|
|
<Authors /> |
|
|
|
|
<Company>Kaitai Project</Company> |
|
|
|
|
<Description>This library implements Kaitai Struct API for C#.</Description> |
|
|
|
|
<Product>Kaitai Struct Runtime</Product> |
|
|
|
|
<Copyright>Copyright © Kaitai Project 2016-2020</Copyright> |
|
|
|
|
<AssemblyName>Kaitai.Struct.Runtime</AssemblyName> |
|
|
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
|
|
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
|
|
|
|
<ProductVersion>8.0.50727</ProductVersion> |
|
|
|
|
<SchemaVersion>2.0</SchemaVersion> |
|
|
|
|
<ProjectGuid>{230E538A-2C3E-47EA-B4A7-D938BA0B8A31}</ProjectGuid> |
|
|
|
|
<OutputType>Library</OutputType> |
|
|
|
|
<AppDesignerFolder>Properties</AppDesignerFolder> |
|
|
|
|
<RootNamespace>Kaitai</RootNamespace> |
|
|
|
|
<PackageProjectUrl>http://kaitai.io/</PackageProjectUrl> |
|
|
|
|
<RepositoryUrl>https://github.com/kaitai-io/kaitai_struct_csharp_runtime</RepositoryUrl> |
|
|
|
|
<PackageTags>Kaitai Struct File-Format Binary Protocols</PackageTags> |
|
|
|
|
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile> |
|
|
|
|
<PackageIcon>icon.png</PackageIcon> |
|
|
|
|
|
|
|
|
|
<AssemblyVersion>0.9.0.0</AssemblyVersion> |
|
|
|
|
<FileVersion>0.9.0.0</FileVersion> |
|
|
|
|
<Version>0.9.0.0</Version> |
|
|
|
|
|
|
|
|
|
<PackageReleaseNotes>Update to version 0.9</PackageReleaseNotes> |
|
|
|
|
<AssemblyName>Kaitai.Struct.Runtime</AssemblyName> |
|
|
|
|
<StartupObject> |
|
|
|
|
</StartupObject> |
|
|
|
|
</PropertyGroup> |
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
|
|
|
|
<DebugSymbols>true</DebugSymbols> |
|
|
|
|
<DebugType>full</DebugType> |
|
|
|
|
<Optimize>false</Optimize> |
|
|
|
|
<OutputPath>bin\Debug\</OutputPath> |
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants> |
|
|
|
|
<ErrorReport>prompt</ErrorReport> |
|
|
|
|
<WarningLevel>4</WarningLevel> |
|
|
|
|
<DocumentationFile> |
|
|
|
|
</DocumentationFile> |
|
|
|
|
</PropertyGroup> |
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
|
|
|
|
<DebugType>pdbonly</DebugType> |
|
|
|
|
<Optimize>true</Optimize> |
|
|
|
|
<OutputPath>bin\Release\</OutputPath> |
|
|
|
|
<DefineConstants>TRACE</DefineConstants> |
|
|
|
|
<ErrorReport>prompt</ErrorReport> |
|
|
|
|
<WarningLevel>4</WarningLevel> |
|
|
|
|
<DocumentationFile>bin\Release\Kaitai.Struct.Runtime.xml</DocumentationFile> |
|
|
|
|
</PropertyGroup> |
|
|
|
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> |
|
|
|
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. |
|
|
|
|
Other similar extension points exist, see Microsoft.Common.targets. |
|
|
|
|
<Target Name="BeforeBuild"> |
|
|
|
|
</Target> |
|
|
|
|
<Target Name="AfterBuild"> |
|
|
|
|
</Target> |
|
|
|
|
--> |
|
|
|
|
<ItemGroup> |
|
|
|
|
<Compile Include="KaitaiStream.cs" /> |
|
|
|
|
<Compile Include="KaitaiStruct.cs" /> |
|
|
|
|
<Compile Include="Properties\AssemblyInfo.cs" /> |
|
|
|
|
</ItemGroup> |
|
|
|
|
<ItemGroup> |
|
|
|
|
<None Include="LICENSE.txt" Pack="true" PackagePath="" /> |
|
|
|
|
<None Include="icon.png" Pack="true" PackagePath="" /> |
|
|
|
|
<Reference Include="System" /> |
|
|
|
|
</ItemGroup> |
|
|
|
|
|
|
|
|
|
</Project> |
|
|
|
|
</Project> |