blob: 20f7589fb8cf404928b12856eaed996666d9e08c (
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
26
27
|
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>Gestor.Model</AssemblyName>
<GenerateAssemblyInfo>False</GenerateAssemblyInfo>
<TargetFramework>net48</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<LangVersion>11.0</LangVersion>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup>
<RootNamespace />
</PropertyGroup>
<ItemGroup />
<ItemGroup>
<Reference Include="Newtonsoft.Json" />
<Reference Include="System.Core">
<HintPath>../../../../usr/share/dotnet/shared/Microsoft.NETCore.App/6.0.25/System.Core.dll</HintPath>
</Reference>
<Reference Include="System.Data">
<HintPath>../../../../usr/share/dotnet/shared/Microsoft.NETCore.App/6.0.25/System.Data.dll</HintPath>
</Reference>
<Reference Include="Microsoft.CSharp">
<HintPath>../../../../usr/share/dotnet/shared/Microsoft.NETCore.App/6.0.25/Microsoft.CSharp.dll</HintPath>
</Reference>
</ItemGroup>
</Project>
|