-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLokad.Utf8Regex.PythonRe.csproj
More file actions
46 lines (41 loc) · 2.01 KB
/
Copy pathLokad.Utf8Regex.PythonRe.csproj
File metadata and controls
46 lines (41 loc) · 2.01 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
38
39
40
41
42
43
44
45
46
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>Lokad.Utf8Regex.PythonRe</PackageId>
<Title>Lokad.Utf8Regex.PythonRe</Title>
<Description>Optional Python re companion package for Lokad.Utf8Regex, providing a UTF-8 oriented Python-style regular expression API without forcing Python-specific semantics into the base library.</Description>
<Authors>Lokad</Authors>
<Company>Lokad</Company>
<Version>0.2.0</Version>
<AssemblyVersion>0.2.0</AssemblyVersion>
<FileVersion>0.2.0</FileVersion>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageIcon>icon.png</PackageIcon>
<PackageTags>regex;utf8;utf-8;python;re;span;bytes;performance</PackageTags>
<PackageProjectUrl>https://github.com/Lokad/Utf8Regex</PackageProjectUrl>
<RepositoryUrl>https://github.com/Lokad/Utf8Regex.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<DebugType>portable</DebugType>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageOutputPath>..\..\artifacts\nuget\</PackageOutputPath>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\LICENSE.txt" Pack="true" PackagePath="\" Visible="false" />
<None Include="README.md" Pack="true" PackagePath="\" Visible="false" />
<None Include="..\..\icon.png" Pack="true" PackagePath="\" Visible="false" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Lokad.Utf8Regex\Lokad.Utf8Regex.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
</ItemGroup>
</Project>