blob: 07b6fdf197aa34f2fd169c7b2de751f42506b45e [file] [log] [blame]
Constantin Ziesche687f8882020-10-02 16:17:44 +02001<Project Sdk="Microsoft.NET.Sdk.Web">
Constantin Ziesche857c7ab2020-02-25 11:24:51 +01002
3 <PropertyGroup>
Constantin Zieschefa612082020-04-03 09:54:56 +02004 <TargetFramework>netcoreapp3.1</TargetFramework>
Constantin Ziesche857c7ab2020-02-25 11:24:51 +01005 <Authors>Constantin Ziesche</Authors>
Constantin Zieschee837f992020-08-19 12:04:32 +02006 <Copyright>Copyright 2020 - Robert Bosch GmbH</Copyright>
Constantin Ziesche857c7ab2020-02-25 11:24:51 +01007 <PackageProjectUrl>https://wiki.eclipse.org/BaSyx</PackageProjectUrl>
8 <RepositoryUrl>https://git.eclipse.org/r/plugins/gitiles/basyx/basyx/+/master/sdks/csnet/</RepositoryUrl>
9 <PackageLicenseUrl></PackageLicenseUrl>
10 <Description>The official BaSyx Hello-World-Example</Description>
11 <Company>Robert Bosch GmbH</Company>
12 <PackageTags>BaSys BaSyx Hello Asset Administration Shell Example</PackageTags>
13 <PackageLicenseExpression>EDL-1.0</PackageLicenseExpression>
Constantin Ziesche687f8882020-10-02 16:17:44 +020014 <StartupObject>HelloAssetAdministrationShell.Program</StartupObject>
Constantin Ziesche857c7ab2020-02-25 11:24:51 +010015 </PropertyGroup>
Constantin Ziesche687f8882020-10-02 16:17:44 +020016
Constantin Ziesche857c7ab2020-02-25 11:24:51 +010017 <ItemGroup>
Constantin Ziesche7af69ff2020-10-21 11:07:34 +020018 <PackageReference Include="BaSyx.AAS.Server.Http" Version="1.0.0" />
19 <PackageReference Include="BaSyx.Common.UI" Version="1.0.0" />
20 <PackageReference Include="BaSyx.Common.UI.Swagger" Version="1.0.0" />
Constantin Ziescheb10014d2021-01-24 11:57:29 +010021 <PackageReference Include="BaSyx.Discovery.mDNS" Version="1.0.0" />
Constantin Zieschefa612082020-04-03 09:54:56 +020022 <PackageReference Include="BaSyx.Utils.Client.Mqtt" Version="1.0.0" />
23 <PackageReference Include="NLog" Version="4.7.0" />
Constantin Ziesche857c7ab2020-02-25 11:24:51 +010024 </ItemGroup>
Constantin Ziesche687f8882020-10-02 16:17:44 +020025
26 <ItemGroup>
Constantin Ziesche687f8882020-10-02 16:17:44 +020027 <None Update="Content\HelloAssetAdministrationShell.pdf">
28 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
29 </None>
30 <None Update="ServerSettings.xml">
31 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
32 </None>
33 <None Update="NLog.config">
34 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
35 </None>
36 </ItemGroup>
Constantin Ziesche857c7ab2020-02-25 11:24:51 +010037
Constantin Ziesche857c7ab2020-02-25 11:24:51 +010038</Project>