| <Project Sdk="Microsoft.NET.Sdk"> |
| |
| <PropertyGroup> |
| <TargetFramework>netcoreapp3.1</TargetFramework> |
| |
| <IsPackable>false</IsPackable> |
| </PropertyGroup> |
| |
| <ItemGroup> |
| <None Remove="RegistryClientSettings.xml" /> |
| </ItemGroup> |
| |
| <ItemGroup> |
| <Content Include="RegistryClientSettings.xml"> |
| <PackagePath>contentFiles\any\$(TargetFramework)\</PackagePath> |
| <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| <ExcludeFromSingleFile>true</ExcludeFromSingleFile> |
| <PackageFlatten>true</PackageFlatten> |
| <PackageCopyToOutput>true</PackageCopyToOutput> |
| <Pack>true</Pack> |
| </Content> |
| </ItemGroup> |
| |
| <ItemGroup> |
| <PackageReference Include="FluentAssertions" Version="5.10.3" /> |
| <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" /> |
| <PackageReference Include="MSTest.TestAdapter" Version="2.0.0" /> |
| <PackageReference Include="MSTest.TestFramework" Version="2.0.0" /> |
| <PackageReference Include="coverlet.collector" Version="1.0.1" /> |
| </ItemGroup> |
| |
| <ItemGroup> |
| <ProjectReference Include="..\BaSyx.AAS.Client.Http\BaSyx.AAS.Client.Http.csproj" /> |
| <ProjectReference Include="..\BaSyx.AAS.Server.Http\BaSyx.AAS.Server.Http.csproj" /> |
| <ProjectReference Include="..\BaSyx.Registry.Client.Http\BaSyx.Registry.Client.Http.csproj" /> |
| <ProjectReference Include="..\BaSyx.Registry.ReferenceImpl.FileBased\BaSyx.Registry.ReferenceImpl.FileBased.csproj" /> |
| <ProjectReference Include="..\BaSyx.Registry.Server.Http\BaSyx.Registry.Server.Http.csproj" /> |
| </ItemGroup> |
| |
| </Project> |