-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathSysML2.NET.csproj
More file actions
50 lines (44 loc) · 2.48 KB
/
Copy pathSysML2.NET.csproj
File metadata and controls
50 lines (44 loc) · 2.48 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
47
48
49
50
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.1;net10.0</TargetFrameworks>
<LangVersion>12.0</LangVersion>
<Version>0.22.0</Version>
<Description>A .NET implementation of the OMG SysML v2 specification.</Description>
<PackageId>SysML2.NET</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] Abstract syntax UML model resynced to upstream commit 22dbbc30d13e5cde39a2d69cbd68cab895d6c9e1 (#285) — regenerated AutoGenDto and AutoGenPoco interfaces/classes; impacts Feature, Usage, Membership, ReferenceSubsetting, TextualRepresentation, MultiplicityRange, LiteralInteger, LiteralRational, RequirementUsage, SelectExpression and more
[Fix] ReferenceUsageExtensions corrected (#168)
[Fix] DAL POCO extensions regenerated against interface types instead of concrete classes (#278)
</PackageReleaseNotes>
<PackageIcon>cdp4-icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GenerateSBOM>true</GenerateSBOM>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.9" />
<PackageReference Include="Microsoft.Sbom.Targets" Version="4.1.5" PrivateAssets="all" />
<PackageReference Include="System.Collections.Immutable" Version="10.0.9" />
</ItemGroup>
<ItemGroup>
<None Include="..\cdp4-icon.png" Pack="true" PackagePath="\" />
<None Include="..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="SysML2.NET.Dal" />
<InternalsVisibleTo Include="SysML2.NET.Dal.Tests" />
<InternalsVisibleTo Include="SysML2.NET.Serializer.Json" />
<InternalsVisibleTo Include="SysML2.NET.Serializer.Xmi" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="SysML2.NET.Tests" />
</ItemGroup>
</Project>