You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.2 KiB
35 lines
1.2 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
|
<Authors>SimonG</Authors>
|
|
<Company>SimonG</Company>
|
|
<Description>Client for the GBase</Description>
|
|
<Copyright>Copyright(c) 2020 SimonG. All Rights Reserved.</Copyright>
|
|
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
|
|
<PackageProjectUrl>https://github.com/SimonG96/GBase</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/SimonG96/GBase</RepositoryUrl>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<DocumentationFile>D:\workspace\Testprojekte\GBase\GBase.Client\GBase.Client.xml</DocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\GBase.Api\GBase.Api.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="..\LICENSE.md">
|
|
<Pack>True</Pack>
|
|
<PackagePath></PackagePath>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="LightweightIocContainer" Version="2.1.0" />
|
|
<PackageReference Include="System.ServiceModel.Http" Version="4.7.0" />
|
|
<PackageReference Include="System.ServiceModel.NetTcp" Version="4.7.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|