-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSynx.Core.csproj
More file actions
32 lines (32 loc) · 1.36 KB
/
Synx.Core.csproj
File metadata and controls
32 lines (32 loc) · 1.36 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>Synx</RootNamespace>
<LangVersion>12</LangVersion>
</PropertyGroup>
<!-- NuGet: run publish-csharp.bat or `dotnet pack` after setting Version for releases -->
<PropertyGroup>
<!-- NuGet ID (Synx.Core is taken on nuget.org); code namespace stays Synx -->
<PackageId>APERTURESyndicate.Synx</PackageId>
<Version>3.6.3.0</Version>
<Authors>APERTURESyndicate</Authors>
<Company>APERTURESyndicate</Company>
<Product>SYNX</Product>
<Description>Parse SYNX (Active Data Format) and emit canonical JSON — C# implementation aligned with synx-core.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/APERTURESyndicate/synx-format</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>README.md</PackageReadmeFile>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Wasmtime" Version="34.0.2" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>