-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add csharp version update to the prepare script. To do this correctly, I decided to refactor the .csproj and .props files so the common msbuild properties are in a root Directory.Build.props file. - Adjust the Description of the Apache.Arrow library. - Add the new xml files to the rat_exclude list.
- Loading branch information
Showing
8 changed files
with
58 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<Project> | ||
|
||
<!-- Common repo directories --> | ||
<PropertyGroup> | ||
<RepoRoot>$(MSBuildThisFileDirectory)../</RepoRoot> | ||
<CSharpDir>$(MSBuildThisFileDirectory)</CSharpDir> | ||
<BaseOutputPath>$(CSharpDir)/artifacts/$(AssemblyName)</BaseOutputPath> | ||
</PropertyGroup> | ||
|
||
<!-- AssemblyInfo properties --> | ||
<PropertyGroup> | ||
<Product>Apache Arrow library</Product> | ||
<Copyright>2018 Apache Software Foundation</Copyright> | ||
<Company>Apache</Company> | ||
<VersionPrefix>0.13.0</VersionPrefix> | ||
<VersionSuffix>preview</VersionSuffix> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<LangVersion>7.2</LangVersion> | ||
<SignAssembly>true</SignAssembly> | ||
<AssemblyOriginatorKeyFile>$(CSharpDir)ApacheArrow.snk</AssemblyOriginatorKeyFile> | ||
</PropertyGroup> | ||
|
||
<!-- NuGet properties --> | ||
<PropertyGroup> | ||
<Authors>Apache</Authors> | ||
<PackageIconUrl>https://www.apache.org/images/feather.png</PackageIconUrl> | ||
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile> | ||
<PackageProjectUrl>https://arrow.apache.org/</PackageProjectUrl> | ||
<PackageTags>apache arrow</PackageTags> | ||
<RepositoryType>git</RepositoryType> | ||
<RepositoryUrl>https://github.com/apache/arrow</RepositoryUrl> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Condition="'$(IsPackable)' == 'true'"> | ||
<Content Include="$(RepoRoot)LICENSE.txt" Pack="true" PackagePath="" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
<Project> | ||
|
||
<Import Project="..\Directory.Build.props" /> | ||
|
||
<PropertyGroup> | ||
<IsPackable>false</IsPackable> | ||
</PropertyGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters