-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathSysML2.NET.Serializer.Json.csproj
More file actions
41 lines (36 loc) · 1.78 KB
/
SysML2.NET.Serializer.Json.csproj
File metadata and controls
41 lines (36 loc) · 1.78 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>12.0</LangVersion>
<Version>0.17.0</Version>
<Description>A .NET implementation of the OMG SysML v2 JSON serializer.</Description>
<PackageId>SysML2.NET.Serializer.Json</PackageId>
<Company>Starion Group S.A.</Company>
<Copyright>Copyright © Starion Group S.A.</Copyright>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<RepositoryUrl>https://github.com/STARIONGROUP/SysML2.NET.git</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<Authors>Sam Gerené</Authors>
<RequireLicenseAcceptance>true</RequireLicenseAcceptance>
<PackageReleaseNotes>
[Update] to SysML2.NET version 0.17.0
[Update] SysML.ecore from source git repos - [TAG: 2025-06] (regenerate code)
</PackageReleaseNotes>
<PackageIcon>cdp4-icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GenerateSBOM>true</GenerateSBOM>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Text.Json" Version="10.0.2" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.2" />
<PackageReference Include="Microsoft.Sbom.Targets" Version="4.1.5" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<None Include="..\cdp4-icon.png" Pack="true" PackagePath="\" />
<None Include="..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SysML2.NET\SysML2.NET.csproj" />
</ItemGroup>
</Project>