-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopen-simulation-interface-csharp.csproj
More file actions
34 lines (30 loc) · 1.61 KB
/
open-simulation-interface-csharp.csproj
File metadata and controls
34 lines (30 loc) · 1.61 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<PackageId>OpenSimulationInterface.CSharp</PackageId>
<RootNamespace>OsiSharp</RootNamespace>
<Version>1.1.0</Version>
<Owners>Thomas Hempen</Owners>
<Authors>Thomas Hempen</Authors>
<Product>Open Simulation Interface CSharp</Product>
<Title>Open Simulation Interface CSharp</Title>
<Description>This NuGet package provides C# bindings for the ASAM e.V. Open Simulation Interface (OSI) version v3.7.0 - ASAM OSI "Jolly Jones". It enables developers to integrate OSI messages in their .NET applications using Protocol Buffers (protobuf). The package includes all necessary proto files and auto-generates C# classes for seamless integration.</Description>
<PackageTags>OSI;OpenSimulationInterface;ASAM</PackageTags>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<!--<GeneratePackageOnBuild>true</GeneratePackageOnBuild>-->
<ProjectUrl>https://github.com/thempen/open-simulation-interface-csharp</ProjectUrl>
<RepositoryUrl>https://github.com/thempen/open-simulation-interface-csharp.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="" />
<None Include="LICENSE" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Google.Protobuf" Version="3.26.1" />
<PackageReference Include="Google.Protobuf.Tools" Version="3.26.1" />
</ItemGroup>
</Project>