Projekt

Obecné

Profil

Stáhnout (1.32 KB) Statistiky
| Větev: | Tag: | Revize:
1 6391f3f2 Dominik Chlouba
<Project Sdk="Microsoft.NET.Sdk.Web">
2 d57100ff Milan Hotovec
3
  <PropertyGroup>
4
    <AssemblyName>Leuze.Modules.Goal.Application.UI</AssemblyName>
5
    <RootNamespace>Leuze.Modules.Goal.Application.UI</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 6391f3f2 Dominik Chlouba
    <OutputType>Library</OutputType>
14 d57100ff Milan Hotovec
    <Nullable>enable</Nullable>
15
    <GenerateDocumentationFile>true</GenerateDocumentationFile>
16
  </PropertyGroup>
17
18
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
19 bf6db391 Milan Hotovec
    <OutputPath>..\..\..\..\Presentation\Leuze.Modules\</OutputPath>
20 6391f3f2 Dominik Chlouba
    <DocumentationFile>..\..\..\..\..\docs\Leuze.Modules.Goal.Application.UI.xml</DocumentationFile>
21 d57100ff Milan Hotovec
  </PropertyGroup>
22
23 d402013e Tomáš Orlovský
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Test|AnyCPU'">
24
    <OutputPath>..\..\..\..\Presentation\Leuze.Modules\</OutputPath>
25
    <DocumentationFile>..\..\..\..\..\docs\Leuze.Modules.Goal.Application.UI.xml</DocumentationFile>
26
  </PropertyGroup>
27
28 b80b186b Milan Hotovec
  <ItemGroup>
29
    <ProjectReference Include="..\..\..\..\Core\Application\Leuze.Core.Application.UI\Leuze.Core.Application.UI.csproj" />
30
    <ProjectReference Include="..\Leuze.Modules.Goal.Application\Leuze.Modules.Goal.Application.csproj" />
31
  </ItemGroup>
32
33 d57100ff Milan Hotovec
</Project>