-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #222 from intuit/version
updated release package
- Loading branch information
Showing
4 changed files
with
53 additions
and
4 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
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
49 changes: 49 additions & 0 deletions
49
IPPDotNetDevKitCSV3/Tools/XsdExtension/Intuit.Ipp.Data/Directory.Build.props
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,49 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<SolutionDir Condition="$(SolutionDir) == ''">$(MSBuildThisFileDirectory)\</SolutionDir> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<BaseIntermediateOutputPath>$(MSBuildThisFileDirectory)artifacts\obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath> | ||
<BaseOutputPath Condition=" '$(BaseOutputPath)' == '' ">$(MSBuildThisFileDirectory)artifacts\bin\</BaseOutputPath> | ||
<DocumentationFile>$(BaseOutputPath)$(MSBuildProjectName).xml</DocumentationFile> | ||
<LangVersion>latest</LangVersion> | ||
<DebugType Condition=" '$(Configuration)' == 'Debug' ">Full</DebugType> | ||
<DebugType Condition=" '$(Configuration)' == 'Release' ">pdbonly</DebugType> | ||
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb;.xml</AllowedOutputExtensionsInPackageBuildOutputFolder> | ||
<NoLogo>true</NoLogo> | ||
<PackageOutputPath>$(SolutionDir)artifacts\nupkg</PackageOutputPath> | ||
<PackageIcon>$(MSBuildThisFileDirectory)logo.png</PackageIcon> | ||
<OutputPath>$(SolutionDir)artifacts\bin</OutputPath> | ||
<Copyright>Copyright © 2020 Intuit, Inc.</Copyright> | ||
<AssemblyVersion>14.6.3.0</AssemblyVersion> | ||
<FileVersion>14.6.3.0</FileVersion> | ||
<Company>Intuit</Company> | ||
<AppendTargetFrameworkToOutputPath>true</AppendTargetFrameworkToOutputPath> | ||
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)' == 'netstandard2.0'"> | ||
<DefineConstants>NETCORE2_1;NETSTANDARD;NETSTANDARD2_0</DefineConstants> | ||
|
||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)' == 'net472'"> | ||
<DefineConstants>NET472;NETFULL</DefineConstants> | ||
|
||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)' == 'net461'"> | ||
<DefineConstants>NET461;NETFULL</DefineConstants> | ||
|
||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" /> | ||
</ItemGroup> | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
</Project> |