26 lines
967 B
XML
26 lines
967 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
||
<PropertyGroup>
|
||
<TargetFramework>net8.0</TargetFramework>
|
||
<Nullable>enable</Nullable>
|
||
<ImplicitUsings>enable</ImplicitUsings>
|
||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||
<PackageId>SQLLinter</PackageId>
|
||
<Version>1.0.0</Version>
|
||
<Authors>FrigaT</Authors>
|
||
<Company>FrigaT</Company>
|
||
<Product>SQLLinter</Product>
|
||
<Description>Линтер с правилами проверки MS SQL кода</Description>
|
||
<Copyright>Copyright © 2025 FrigaT</Copyright>
|
||
<RepositoryUrl>https://git.frigat.duckdns.org/FrigaT/SQLLint</RepositoryUrl>
|
||
<RepositoryType>git</RepositoryType>
|
||
<PackageProjectUrl>https://git.frigat.duckdns.org/FrigaT/SQLLint</PackageProjectUrl>
|
||
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
||
</PropertyGroup>
|
||
|
||
<ItemGroup>
|
||
<PackageReference Include="Microsoft.SqlServer.TransactSql.ScriptDom" Version="170.128.0" />
|
||
</ItemGroup>
|
||
|
||
</Project>
|