Projekt

Obecné

Profil

Stáhnout (1.35 KB) Statistiky
| Větev: | Tag: | Revize:
1 d57100ff Milan Hotovec
<Project Sdk="Microsoft.NET.Sdk">
2
3
  <PropertyGroup>
4
    <AssemblyName>Leuze.Modules.Goal.Infrastructure.Persistence</AssemblyName>
5
    <RootNamespace>Leuze.Modules.Goal.Infrastructure.Persistence</RootNamespace>
6
    <Product></Product>
7
    <Description></Description>
8 d402013e Tomáš Orlovský
    <Configurations>Debug;Release;Test</Configurations>
9 d57100ff Milan Hotovec
  </PropertyGroup>
10
11
  <PropertyGroup>
12
    <TargetFramework>net5.0</TargetFramework>
13
    <Nullable>enable</Nullable>
14
    <GenerateDocumentationFile>true</GenerateDocumentationFile>
15
  </PropertyGroup>
16
17
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
18 bf6db391 Milan Hotovec
    <OutputPath>..\..\..\..\Presentation\Leuze.Modules\</OutputPath>
19 6391f3f2 Dominik Chlouba
    <DocumentationFile>..\..\..\..\..\docs\Leuze.Modules.Goal.Infrastructure.Persistence.xml</DocumentationFile>
20 d57100ff Milan Hotovec
  </PropertyGroup>
21 b80b186b Milan Hotovec
22 d402013e Tomáš Orlovský
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Test|AnyCPU'">
23
    <OutputPath>..\..\..\..\Presentation\Leuze.Modules\</OutputPath>
24
    <DocumentationFile>..\..\..\..\..\docs\Leuze.Modules.Goal.Infrastructure.Persistence.xml</DocumentationFile>
25
  </PropertyGroup>
26
27 b80b186b Milan Hotovec
  <ItemGroup>
28
    <ProjectReference Include="..\..\..\..\Core\Infrastructure\Leuze.Core.Infrastructure.Persistence\Leuze.Core.Infrastructure.Persistence.csproj" />
29
    <ProjectReference Include="..\..\Domain\Leuze.Modules.Goal.Domain\Leuze.Modules.Goal.Domain.csproj" />
30
  </ItemGroup>
31 d57100ff Milan Hotovec
</Project>