-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMistralTokenizerNET.csproj
More file actions
executable file
·28 lines (23 loc) · 993 Bytes
/
MistralTokenizerNET.csproj
File metadata and controls
executable file
·28 lines (23 loc) · 993 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageId>Alluseri.MistralTokenizer</PackageId>
<Version>1.0.0</Version>
<Authors>Alluseri</Authors>
<Company>lunahook.dev ltd.</Company>
<!--<DefineConstants>$(DefineConstants);MT_NET_PROFILE_INIT</DefineConstants> -->
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\"/>
<Compile Remove="test\**" />
<!--<PackageReference Include="BenchmarkDotNet" Version="0.13.5" />-->
<EmbeddedResource Include="res\merges.b64" />
<EmbeddedResource Include="res\tokens.b64" />
</ItemGroup>
</Project>