12345678910111213141516171819202122232425262728293031323334 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net7.0</TargetFramework>
- <OutputType>Library</OutputType>
- <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <OutputPath>..\bin\Debug\</OutputPath>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <OutputPath>..\bin\Release\</OutputPath>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
- <PackageReference Include="Microsoft.Data.SqlClient" Version="5.1.1" />
- <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.12">
- <PrivateAssets>all</PrivateAssets>
- <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
- </PackageReference>
- <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.0" />
- <PackageReference Include="Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers" Version="0.4.355802">
- <PrivateAssets>all</PrivateAssets>
- </PackageReference>
- </ItemGroup>
- <ItemGroup>
- <Content Include="appsettings.json" />
- <Content Include="Doc\ReadMe.txt" />
- <Content Include="StoredProcedure\uspInsertMachineConnectionLog.sql" />
- </ItemGroup>
- <ItemGroup>
- <Folder Include="Models\" />
- </ItemGroup>
- <PropertyGroup />
- </Project>
|