-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathDirectory.Build.props
48 lines (41 loc) · 1.65 KB
/
Directory.Build.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
<Project>
<PropertyGroup>
<OutputPath>$(MSBuildThisFileDirectory)bin\$(Configuration)</OutputPath>
<PackageOutputPath>$(MSBuildThisFileDirectory)packages\</PackageOutputPath>
<Owner>Mark Pflug</Owner>
<Authors>$(Owner)</Authors>
<PackageIconUrl>https://markpflug.github.io/Sylvan.png</PackageIconUrl>
<PackageIcon>Sylvan.png</PackageIcon>
<Copyright>© 2024 $(Owner)</Copyright>
<PackageLicenseFile>license.txt</PackageLicenseFile>
<LangVersion>10.0</LangVersion>
<RepositoryUrl>https://github.com/MarkPflug/Sylvan.Data.Excel</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>$(RepositoryUrl)</PackageProjectUrl>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsNotAsErrors>CS1030;CA1835;$(WarningsNotAsErrors)</WarningsNotAsErrors>
<IsTestProject Condition="$(MSBuildProjectName.EndsWith('.Tests')) == 'true'">true</IsTestProject>
<SourceControlInformationFeatureSupported>true</SourceControlInformationFeatureSupported>
<ReadmeFile>$(MSBuildThisFileDirectory)readme.md</ReadmeFile>
<PackageReadmeFile
Condition="Exists($(ReadmeFile))">readme.md</PackageReadmeFile>
</PropertyGroup>
<PropertyGroup Condition="$(IsTestProject) == true">
<NoWarn>CA2007</NoWarn>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)license.txt" Pack="true" PackagePath="">
<Visible>false</Visible>
</None>
<None Include="$(MSBuildThisFileDirectory)Sylvan.png" Pack="true" PackagePath="">
<Visible>false</Visible>
</None>
<None
Condition="Exists($(ReadmeFile))"
Include="$(ReadmeFile)"
Pack="true"
PackagePath="">
<Visible>false</Visible>
</None>
</ItemGroup>
</Project>