-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathEdFi.Db.Deploy.csproj
More file actions
42 lines (42 loc) · 2.09 KB
/
EdFi.Db.Deploy.csproj
File metadata and controls
42 lines (42 loc) · 2.09 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>EdFi.Db.Deploy</RootNamespace>
<AssemblyName>EdFi.Db.Deploy</AssemblyName>
<AssemblyVersion>0.0.0</AssemblyVersion>
<FileVersion>0.0.0</FileVersion>
<Authors>Ed-Fi Alliance</Authors>
<Company>Ed-Fi Alliance</Company>
<Product>Ed-Fi Ods Database Deployment Utility</Product>
<Description>Database deployment utility for the Ed-Fi ODS/API solution.</Description>
<Copyright>Copyright © $([System.DateTime]::Now.ToString(`yyyy`)) Ed-Fi Alliance, LLC and Contributors</Copyright>
<PackageId>EdFi.Db.Deploy</PackageId>
<PackageProjectUrl>https://github.com/Ed-Fi-Alliance-OSS/Ed-Fi-Databases/tree/master</PackageProjectUrl>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<RequireLicenseAcceptance>false</RequireLicenseAcceptance>
<PackageType>DotnetTool</PackageType>
<PackAsTool>true</PackAsTool>
<ToolCommandName>EdFi.Db.Deploy</ToolCommandName>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="Dapper" Version="2.1.28" />
<PackageReference Include="Dapper.Contrib" Version="2.0.78" />
<PackageReference Include="dbup-core" Version="5.0.37" />
<PackageReference Include="dbup-postgresql" Version="5.0.40" />
<PackageReference Include="dbup-sqlserver" Version="5.0.39" />
<PackageReference Include="log4net" Version="2.0.15" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.1.5" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
<PackageReference Include="Npgsql" Version="8.0.3" />
</ItemGroup>
<ItemGroup>
<None Update="log4net.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="../../LICENSE.txt" Pack="true" PackagePath="LICENSE.txt" />
<None Include="../../NOTICES.md" Pack="true" PackagePath="NOTICES.md" />
</ItemGroup>
</Project>