Projekt

Obecné

Profil

Stáhnout (1.12 KB) Statistiky
| Větev: | Tag: | Revize:
1 b80b186b Milan Hotovec
<Project Sdk="Microsoft.NET.Sdk">
2 d57100ff Milan Hotovec
3
  <PropertyGroup>
4
    <AssemblyName>Leuze.Modules.Goal.Domain</AssemblyName>
5
    <RootNamespace>Leuze.Modules.Goal.Domain</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.Domain.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.Domain.xml</DocumentationFile>
25
  </PropertyGroup>
26
27 b80b186b Milan Hotovec
  <ItemGroup>
28
    <ProjectReference Include="..\..\..\..\Core\Domain\Leuze.Core.Domain\Leuze.Core.Domain.csproj" />
29
  </ItemGroup>
30
31 d57100ff Milan Hotovec
</Project>