Projekt

Obecné

Profil

Stáhnout (1.47 KB) Statistiky
| Větev: | Tag: | Revize:
1 d57100ff Milan Hotovec
<Project Sdk="Microsoft.NET.Sdk">
2
3
  <PropertyGroup>
4
    <AssemblyName>Leuze.Modules.Goal.Application</AssemblyName>
5
    <RootNamespace>Leuze.Modules.Goal.Application</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.Application.xml</DocumentationFile>
20 d57100ff Milan Hotovec
  </PropertyGroup>
21
22 d402013e Tomáš Orlovský
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Test|AnyCPU'">
23
    <OutputPath>..\..\..\..\Presentation\Leuze.Modules\</OutputPath>
24
    <DocumentationFile>..\..\..\..\..\docs\Leuze.Modules.Goal.Application.xml</DocumentationFile>
25
  </PropertyGroup>
26
27 b80b186b Milan Hotovec
  <ItemGroup>
28
    <ProjectReference Include="..\..\..\..\Core\Application\Leuze.Core.Application\Leuze.Core.Application.csproj" />
29
    <ProjectReference Include="..\..\Domain\Leuze.Modules.Goal.Domain\Leuze.Modules.Goal.Domain.csproj" />
30
  </ItemGroup>
31
32 a163f8f1 Milan Hotovec
  <ItemGroup>
33
    <Folder Include="CQRS\Comments\Commands\" />
34
    <Folder Include="CQRS\Comments\Queries\" />
35
    <Folder Include="CQRS\Reviews\Commands\" />
36
    <Folder Include="CQRS\Reviews\Queries\" />
37
  </ItemGroup>
38
39 d57100ff Milan Hotovec
</Project>