-
Notifications
You must be signed in to change notification settings - Fork 132
Expand file tree
/
Copy pathStringZilla.csproj
More file actions
37 lines (31 loc) 路 1.6 KB
/
Copy pathStringZilla.csproj
File metadata and controls
37 lines (31 loc) 路 1.6 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
<Project Sdk="Microsoft.NET.Sdk">
<!-- Repo convention: the build manifest lives at the root (like Cargo.toml, package.json,
Package.swift); the C# sources live under csharp/. -->
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<IsAotCompatible>true</IsAotCompatible>
<ImplicitUsings>disable</ImplicitUsings>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<AssemblyName>StringZilla</AssemblyName>
<RootNamespace>StringZilla</RootNamespace>
<PackageId>StringZilla</PackageId>
<Version>5.1.2</Version>
<Authors>Ash Vardanian</Authors>
<Description>Zero-copy .NET bindings for StringZilla: SIMD-accelerated search, compare, and hash over UTF-8 byte spans.</Description>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/ashvardanian/StringZilla</PackageProjectUrl>
<RepositoryUrl>https://github.com/ashvardanian/StringZilla</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<Compile Include="csharp/StringZilla.cs" />
</ItemGroup>
<!-- Native libs are CI/pack-time artifacts (gitignored under csharp/runtimes/). Pack under the
standard runtimes/{rid}/native/ layout and copy to build output so the resolver finds them. -->
<ItemGroup>
<None Include="csharp/runtimes/**/*" Pack="true" PackagePath="runtimes/%(RecursiveDir)"
CopyToOutputDirectory="PreserveNewest" Link="runtimes/%(RecursiveDir)%(Filename)%(Extension)" />
</ItemGroup>
</Project>