Skip to content

Commit 5d21c29

Browse files
committed
Add initial configuration for C# Async. Use C# naming conventions.
1 parent aa93ab7 commit 5d21c29

17 files changed

+100
-36
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp3.1</TargetFramework>
5+
6+
<IsPackable>false</IsPackable>
7+
</PropertyGroup>
8+
9+
<ItemGroup>
10+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />
11+
<PackageReference Include="xunit" Version="2.4.0" />
12+
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" />
13+
<PackageReference Include="coverlet.collector" Version="1.0.1" />
14+
</ItemGroup>
15+
16+
</Project>
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp3.1</TargetFramework>
5+
</PropertyGroup>
6+
7+
</Project>
File renamed without changes.
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFrameworks>netstandard1.3;net45</TargetFrameworks>
5+
<GenerateDocumentationFile>true</GenerateDocumentationFile>
6+
<NoWarn>1701;1702;CS1591</NoWarn>
7+
<ProjectGuid>{8339A750-C407-4CE8-8E31-51CB2EFD3A4B}</ProjectGuid>
8+
</PropertyGroup>
9+
10+
<PropertyGroup>
11+
<PackageId>KaitaiStruct.Runtime.CSharp</PackageId>
12+
<Authors />
13+
<Company>Kaitai Project</Company>
14+
<Description>This library implements Kaitai Struct API for C#.</Description>
15+
<Product>Kaitai Struct Runtime</Product>
16+
<Copyright>Copyright © Kaitai Project 2016-2019</Copyright>
17+
<AssemblyName>Kaitai.Struct.Runtime</AssemblyName>
18+
<RootNamespace>Kaitai</RootNamespace>
19+
<PackageProjectUrl>http://kaitai.io/</PackageProjectUrl>
20+
<RepositoryUrl>https://github.com/kaitai-io/kaitai_struct_csharp_runtime</RepositoryUrl>
21+
<PackageTags>Kaitai Struct File-Format Binary Protocols</PackageTags>
22+
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
23+
<PackageIcon>icon.png</PackageIcon>
24+
25+
<AssemblyVersion>0.8.0.0</AssemblyVersion>
26+
<FileVersion>0.8.0.0</FileVersion>
27+
<Version>0.8.0.0</Version>
28+
29+
<PackageReleaseNotes></PackageReleaseNotes>
30+
</PropertyGroup>
31+
32+
<ItemGroup>
33+
<None Include="LICENSE.txt" Pack="true" PackagePath="" />
34+
<None Include="icon.png" Pack="true" PackagePath="" />
35+
</ItemGroup>
36+
37+
</Project>
File renamed without changes.

0 commit comments

Comments
 (0)