File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 4
4
<TargetFramework >net8.0</TargetFramework >
5
5
<ImplicitUsings >enable</ImplicitUsings >
6
6
<Nullable >enable</Nullable >
7
+ <PackageReadmeFile >README.md</PackageReadmeFile >
8
+ <GenerateDocumentationFile >true</GenerateDocumentationFile >
9
+ </PropertyGroup >
10
+
11
+ <PropertyGroup >
12
+ <AssemblyName >KclLib</AssemblyName >
13
+ <PackageId >KclLib</PackageId >
14
+ <Version >0.9.0</Version >
15
+ <IncludeSymbols >true</IncludeSymbols >
16
+ <SymbolPackageFormat >snupkg</SymbolPackageFormat >
17
+ <RepositoryUrl >https://github.com/kcl-lang</RepositoryUrl >
18
+ <PublishRepositoryUrl >true</PublishRepositoryUrl >
19
+ <Title >KclLib</Title >
20
+ <PackageDescription >
21
+ KCL Artifact Library for .NET
22
+ </PackageDescription >
23
+ <PackageLicenseExpression >Apache-2.0</PackageLicenseExpression >
24
+ <PackageReadmeFile >README.md</PackageReadmeFile >
25
+ <EnablePackageValidation >true</EnablePackageValidation >
7
26
</PropertyGroup >
8
27
9
28
<ItemGroup >
10
29
<PackageReference Include =" Google.Protobuf" Version =" 3.27.2" />
11
30
<PackageReference Include =" Newtonsoft.Json" Version =" 13.0.3" />
12
31
</ItemGroup >
13
32
33
+ <ItemGroup >
34
+ <None Include =" README.md" Pack =" true" PackagePath =" \" />
35
+ </ItemGroup >
36
+
14
37
<ItemGroup >
15
38
<None Include =" ../target/release/libkcl_lib_dotnet.*" >
16
39
<CopyToOutputDirectory >Always</CopyToOutputDirectory >
Original file line number Diff line number Diff line change
1
+ # KCL Artifact Library for .NET
2
+
3
+ This library is currently under development. Please check back later.
4
+
5
+ ## Developing and Testing
6
+
7
+ - Install ` cargo `
8
+ - Install ` dotnet 8.0+ `
9
+
10
+ ``` shell
11
+ cargo build --release
12
+ dotnet test
13
+ ```
You can’t perform that action at this time.
0 commit comments