-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.props
49 lines (47 loc) · 2.64 KB
/
common.props
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
43
44
45
46
47
48
49
<Project>
<PropertyGroup>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/hsu-net/db-export-spreadsheet.git</RepositoryUrl>
<PackageProjectUrl>https://github.com/hsu-net/db-export-spreadsheet</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageTags>Database;Db;Export;Excel;Csv;Spreadsheet;Hsu;</PackageTags>
<LicenseFile>LICENSE</LicenseFile>
<Description>A component that regularly exports database tables to spreadsheets every day, can export Excel and Csv files, and supports Excel templates.</Description>
<Company>Hsu</Company>
<Authors>Hsu</Authors>
<Copyright>Copyright © Hsu 2023-now</Copyright>
<OutputPath>$(MSBuildThisFileDirectory)output\libs\$(AssemblyName)</OutputPath>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<LangVersion>11.0</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<IncludeSymbols>true</IncludeSymbols>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<!--<SatelliteResourceLanguages>zh-Hans</SatelliteResourceLanguages>-->
<SatelliteResourceLanguages>None</SatelliteResourceLanguages>
<NoWarn>1591;NETSDK1138;CA1416;$(NoWarn)</NoWarn>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)icon.png" Pack="true" Visible="false" PackagePath="" />
<None Include="$(MSBuildThisFileDirectory)LICENSE" Pack="true" Visible="false" PackagePath="$(PackageLicenseFile)" />
</ItemGroup>
<ItemGroup Condition="'$(ImplicitUsings)' == 'enable'">
<Using Remove="System.Net.Http" />
</ItemGroup>
<Import
Project="$(MSBuildThisFileDirectory)test.props"
Condition="'$(IsTestProject)' == 'true' and Exists('$(MSBuildThisFileDirectory)test.props')" />
<Import
Project="$(MSBuildThisFileDirectory)sample.props"
Condition="'$(IsSampleProject)' == 'true' and Exists('$(MSBuildThisFileDirectory)sample.props')" />
<Import
Project="$(MSBuildThisFileDirectory)app.props"
Condition="'$(IsAppProject)' == 'true' and Exists('$(MSBuildThisFileDirectory)app.props')" />
<Import
Project="$([MSBuild]::GetPathOfFileAbove(version.props, $(MSBuildProjectDirectory)))"
Condition="'$(MSBuildProjectDirectory)' != '' and '$([MSBuild]::GetPathOfFileAbove(version.props,$(MSBuildProjectDirectory)))' != ''" />
<Import
Project="$([MSBuild]::GetPathOfFileAbove(project.props, $(MSBuildProjectDirectory)))"
Condition="'$(MSBuildProjectDirectory)' != '' and '$([MSBuild]::GetPathOfFileAbove(project.props,$(MSBuildProjectDirectory)))' != ''" />
</Project>