blob: ebd448a2f67f0964aae9c4099d3b5c6edd6a7bcf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<AssemblyName>Gestor.Common</AssemblyName>
<GenerateAssemblyInfo>False</GenerateAssemblyInfo>
<UseWPF>True</UseWPF>
<TargetFramework>net48</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<LangVersion>11.0</LangVersion>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup />
<ItemGroup />
<ItemGroup>
<Reference Include="Gestor.Model" />
<Reference Include="System.Core">
<HintPath>../../../../usr/share/dotnet/shared/Microsoft.NETCore.App/6.0.25/System.Core.dll</HintPath>
</Reference>
<Reference Include="WindowsBase">
<HintPath>../../../../usr/share/dotnet/shared/Microsoft.NETCore.App/6.0.25/WindowsBase.dll</HintPath>
</Reference>
<Reference Include="System.Net.Http" />
<Reference Include="PresentationCore" />
</ItemGroup>
</Project>
|