-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
17 lines (16 loc) · 887 Bytes
/
Directory.Build.props
File metadata and controls
17 lines (16 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<Project>
<PropertyGroup Condition="$([System.String]::Copy('$(MSBuildProjectName)').Contains('.Modern'))">
<IsPackable>true</IsPackable>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Authors>forcewake</Authors>
<Company>Pavel Nasovich</Company>
<Description>FlatFile library for high-performance fixed-length and delimited file processing.</Description>
<PackageProjectUrl>https://github.com/forcewake/FlatFile</PackageProjectUrl>
<RepositoryUrl>https://github.com/forcewake/FlatFile</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup Condition="$([System.String]::Copy('$(MSBuildProjectName)').Contains('.Modern'))">
<None Include="$(MSBuildThisFileDirectory)..\README.md" Pack="true" PackagePath="\" Link="README.md" />
</ItemGroup>
</Project>