22 lines
861 B
XML
22 lines
861 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>netstandard2.0</TargetFrameworks>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<AssemblyVersion>1.0.1.0</AssemblyVersion>
|
|
<FileVersion>1.0.1.0</FileVersion>
|
|
<Version>1.0.1</Version>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'">
|
|
<DocumentationFile>C:\Documentation\develop\FalconCore\Falcon.ModelSP\Falcon.ModelSP.xml</DocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Data.SqlClient" Version="1.1.0" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.2.6" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="2.2.6" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|