Skip to content

Commit cf0a34c

Browse files
Merge pull request #17 from aspnet/1.0.1
1.0.1
2 parents 2c3d8ee + 92d9362 commit cf0a34c

19 files changed

+50
-99
lines changed

src/Azure/Azure.csproj

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory),MicrosoftConfigurationBuilders.sln))\tools\MicrosoftConfigurationBuilders.settings.targets" />
45
<PropertyGroup>
56
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
67
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -11,6 +12,7 @@
1112
<AssemblyName>Microsoft.Configuration.ConfigurationBuilders.Azure</AssemblyName>
1213
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
1314
<FileAlignment>512</FileAlignment>
15+
<DocumentationFile>$(OutputPath)$(AssemblyName).xml</DocumentationFile>
1416
<TargetFrameworkProfile />
1517
<SignAssembly>true</SignAssembly>
1618
<DelaySign>true</DelaySign>
@@ -22,18 +24,18 @@
2224
<DebugSymbols>true</DebugSymbols>
2325
<DebugType>full</DebugType>
2426
<Optimize>false</Optimize>
25-
<OutputPath>bin\Debug\</OutputPath>
2627
<DefineConstants>DEBUG;TRACE</DefineConstants>
2728
<ErrorReport>prompt</ErrorReport>
2829
<WarningLevel>4</WarningLevel>
30+
<BaseIntermediateOutputPath>..\obj\</BaseIntermediateOutputPath>
2931
</PropertyGroup>
3032
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
3133
<DebugType>pdbonly</DebugType>
3234
<Optimize>true</Optimize>
33-
<OutputPath>bin\Release\</OutputPath>
3435
<DefineConstants>TRACE</DefineConstants>
3536
<ErrorReport>prompt</ErrorReport>
3637
<WarningLevel>4</WarningLevel>
38+
<BaseIntermediateOutputPath>..\obj\</BaseIntermediateOutputPath>
3739
</PropertyGroup>
3840
<ItemGroup>
3941
<Reference Include="Microsoft.Azure.KeyVault, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">

src/Azure/Properties/AssemblyInfo.cs

-13
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,3 @@
2121

2222
// The following GUID is for the ID of the typelib if this project is exposed to COM
2323
[assembly: Guid("345c5437-4990-45dc-be34-6e37aa05d8d2")]
24-
25-
// Version information for an assembly consists of the following four values:
26-
//
27-
// Major Version
28-
// Minor Version
29-
// Build Number
30-
// Revision
31-
//
32-
// You can specify all the values or you can default the Build and Revision Numbers
33-
// by using the '*' as shown below:
34-
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]

src/Base/Base.csproj

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory),MicrosoftConfigurationBuilders.sln))\tools\MicrosoftConfigurationBuilders.settings.targets" />
45
<PropertyGroup>
56
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
67
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -11,6 +12,7 @@
1112
<AssemblyName>Microsoft.Configuration.ConfigurationBuilders.Base</AssemblyName>
1213
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
1314
<FileAlignment>512</FileAlignment>
15+
<DocumentationFile>$(OutputPath)$(AssemblyName).xml</DocumentationFile>
1416
<TargetFrameworkProfile />
1517
<SignAssembly>true</SignAssembly>
1618
<DelaySign>true</DelaySign>
@@ -20,18 +22,18 @@
2022
<DebugSymbols>true</DebugSymbols>
2123
<DebugType>full</DebugType>
2224
<Optimize>false</Optimize>
23-
<OutputPath>bin\Debug\</OutputPath>
2425
<DefineConstants>DEBUG;TRACE</DefineConstants>
2526
<ErrorReport>prompt</ErrorReport>
2627
<WarningLevel>4</WarningLevel>
28+
<BaseIntermediateOutputPath>..\obj\</BaseIntermediateOutputPath>
2729
</PropertyGroup>
2830
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2931
<DebugType>pdbonly</DebugType>
3032
<Optimize>true</Optimize>
31-
<OutputPath>bin\Release\</OutputPath>
3233
<DefineConstants>TRACE</DefineConstants>
3334
<ErrorReport>prompt</ErrorReport>
3435
<WarningLevel>4</WarningLevel>
36+
<BaseIntermediateOutputPath>..\obj\</BaseIntermediateOutputPath>
3537
</PropertyGroup>
3638
<ItemGroup>
3739
<Reference Include="System" />

src/Base/Properties/AssemblyInfo.cs

-13
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,3 @@
2121

2222
// The following GUID is for the ID of the typelib if this project is exposed to COM
2323
[assembly: Guid("f382fbf8-146d-4968-a199-90d37f9ef9a7")]
24-
25-
// Version information for an assembly consists of the following four values:
26-
//
27-
// Major Version
28-
// Minor Version
29-
// Build Number
30-
// Revision
31-
//
32-
// You can specify all the values or you can default the Build and Revision Numbers
33-
// by using the '*' as shown below:
34-
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]

src/Environment/Environment.csproj

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory),MicrosoftConfigurationBuilders.sln))\tools\MicrosoftConfigurationBuilders.settings.targets" />
45
<PropertyGroup>
56
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
67
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -11,6 +12,7 @@
1112
<AssemblyName>Microsoft.Configuration.ConfigurationBuilders.Environment</AssemblyName>
1213
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
1314
<FileAlignment>512</FileAlignment>
15+
<DocumentationFile>$(OutputPath)$(AssemblyName).xml</DocumentationFile>
1416
<TargetFrameworkProfile />
1517
<SignAssembly>true</SignAssembly>
1618
<DelaySign>true</DelaySign>
@@ -20,18 +22,18 @@
2022
<DebugSymbols>true</DebugSymbols>
2123
<DebugType>full</DebugType>
2224
<Optimize>false</Optimize>
23-
<OutputPath>bin\Debug\</OutputPath>
2425
<DefineConstants>DEBUG;TRACE</DefineConstants>
2526
<ErrorReport>prompt</ErrorReport>
2627
<WarningLevel>4</WarningLevel>
28+
<BaseIntermediateOutputPath>..\obj\</BaseIntermediateOutputPath>
2729
</PropertyGroup>
2830
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2931
<DebugType>pdbonly</DebugType>
3032
<Optimize>true</Optimize>
31-
<OutputPath>bin\Release\</OutputPath>
3233
<DefineConstants>TRACE</DefineConstants>
3334
<ErrorReport>prompt</ErrorReport>
3435
<WarningLevel>4</WarningLevel>
36+
<BaseIntermediateOutputPath>..\obj\</BaseIntermediateOutputPath>
3537
</PropertyGroup>
3638
<ItemGroup>
3739
<Reference Include="System" />

src/Environment/Properties/AssemblyInfo.cs

-13
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,3 @@
2121

2222
// The following GUID is for the ID of the typelib if this project is exposed to COM
2323
[assembly: Guid("f382fbf8-146d-4968-a199-90d37f9ef9a7")]
24-
25-
// Version information for an assembly consists of the following four values:
26-
//
27-
// Major Version
28-
// Minor Version
29-
// Build Number
30-
// Revision
31-
//
32-
// You can specify all the values or you can default the Build and Revision Numbers
33-
// by using the '*' as shown below:
34-
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]

src/Json/Json.csproj

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory),MicrosoftConfigurationBuilders.sln))\tools\MicrosoftConfigurationBuilders.settings.targets" />
45
<PropertyGroup>
56
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
67
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -11,6 +12,7 @@
1112
<AssemblyName>Microsoft.Configuration.ConfigurationBuilders.Json</AssemblyName>
1213
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
1314
<FileAlignment>512</FileAlignment>
15+
<DocumentationFile>$(OutputPath)$(AssemblyName).xml</DocumentationFile>
1416
<TargetFrameworkProfile />
1517
<SignAssembly>true</SignAssembly>
1618
<DelaySign>true</DelaySign>
@@ -20,18 +22,18 @@
2022
<DebugSymbols>true</DebugSymbols>
2123
<DebugType>full</DebugType>
2224
<Optimize>false</Optimize>
23-
<OutputPath>bin\Debug\</OutputPath>
2425
<DefineConstants>DEBUG;TRACE</DefineConstants>
2526
<ErrorReport>prompt</ErrorReport>
2627
<WarningLevel>4</WarningLevel>
28+
<BaseIntermediateOutputPath>..\obj\</BaseIntermediateOutputPath>
2729
</PropertyGroup>
2830
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2931
<DebugType>pdbonly</DebugType>
3032
<Optimize>true</Optimize>
31-
<OutputPath>bin\Release\</OutputPath>
3233
<DefineConstants>TRACE</DefineConstants>
3334
<ErrorReport>prompt</ErrorReport>
3435
<WarningLevel>4</WarningLevel>
36+
<BaseIntermediateOutputPath>..\obj\</BaseIntermediateOutputPath>
3537
</PropertyGroup>
3638
<ItemGroup>
3739
<Reference Include="Newtonsoft.Json, Version=11.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">

src/Json/Properties/AssemblyInfo.cs

-13
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,3 @@
2121

2222
// The following GUID is for the ID of the typelib if this project is exposed to COM
2323
[assembly: Guid("84e0ce5d-4af2-414f-a940-22b3f93fc727")]
24-
25-
// Version information for an assembly consists of the following four values:
26-
//
27-
// Major Version
28-
// Minor Version
29-
// Build Number
30-
// Revision
31-
//
32-
// You can specify all the values or you can default the Build and Revision Numbers
33-
// by using the '*' as shown below:
34-
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]

src/UserSecrets/Properties/AssemblyInfo.cs

-13
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,3 @@
2121

2222
// The following GUID is for the ID of the typelib if this project is exposed to COM
2323
[assembly: Guid("f382fbf8-146d-4968-a199-90d37f9ef9a7")]
24-
25-
// Version information for an assembly consists of the following four values:
26-
//
27-
// Major Version
28-
// Minor Version
29-
// Build Number
30-
// Revision
31-
//
32-
// You can specify all the values or you can default the Build and Revision Numbers
33-
// by using the '*' as shown below:
34-
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]

src/UserSecrets/UserSecrets.csproj

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory),MicrosoftConfigurationBuilders.sln))\tools\MicrosoftConfigurationBuilders.settings.targets" />
45
<PropertyGroup>
56
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
67
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -11,6 +12,7 @@
1112
<AssemblyName>Microsoft.Configuration.ConfigurationBuilders.UserSecrets</AssemblyName>
1213
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
1314
<FileAlignment>512</FileAlignment>
15+
<DocumentationFile>$(OutputPath)$(AssemblyName).xml</DocumentationFile>
1416
<TargetFrameworkProfile />
1517
<SignAssembly>true</SignAssembly>
1618
<DelaySign>true</DelaySign>
@@ -20,18 +22,18 @@
2022
<DebugSymbols>true</DebugSymbols>
2123
<DebugType>full</DebugType>
2224
<Optimize>false</Optimize>
23-
<OutputPath>bin\Debug\</OutputPath>
2425
<DefineConstants>DEBUG;TRACE</DefineConstants>
2526
<ErrorReport>prompt</ErrorReport>
2627
<WarningLevel>4</WarningLevel>
28+
<BaseIntermediateOutputPath>..\obj\</BaseIntermediateOutputPath>
2729
</PropertyGroup>
2830
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2931
<DebugType>pdbonly</DebugType>
3032
<Optimize>true</Optimize>
31-
<OutputPath>bin\Release\</OutputPath>
3233
<DefineConstants>TRACE</DefineConstants>
3334
<ErrorReport>prompt</ErrorReport>
3435
<WarningLevel>4</WarningLevel>
36+
<BaseIntermediateOutputPath>..\obj\</BaseIntermediateOutputPath>
3537
</PropertyGroup>
3638
<ItemGroup>
3739
<Reference Include="System" />

src/packages/ConfigurationBuilders.Azure.nupkg/Microsoft.Configuration.ConfigurationBuilders.Azure.nuproj

+4-3
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,21 @@
55
<AssemblyName>Microsoft.Configuration.ConfigurationBuilders.Azure</AssemblyName>
66
<NuGetPackageId>$(MSBuildProjectName)</NuGetPackageId>
77
<NuSpecFile>Microsoft.Configuration.ConfigurationBuilders.Azure.nuspec</NuSpecFile>
8+
<IsPackage>true</IsPackage>
89
</PropertyGroup>
910
<ItemGroup>
1011
<NuGetContent Include="$(AssemblyName).dll">
11-
<Source>$(RepositoryRoot)\src\Azure\bin\$(Configuration)\</Source>
12+
<Source>$(AssemblyPath)</Source>
1213
<Destination>lib\Net471</Destination>
1314
</NuGetContent>
1415
<!--
1516
<NuGetContent Include="$(AssemblyName).xml">
16-
<Source>$(RepositoryRoot)\src\Azure\bin\$(Configuration)\</Source>
17+
<Source>$(OutputPath)</Source>
1718
<Destination>lib\Net471</Destination>
1819
</NuGetContent>
1920
-->
2021
<NuGetContent Include="$(AssemblyName).pdb" Condition="'$(NuGetPackSymbols)' == 'true'">
21-
<Source>$(RepositoryRoot)\src\Azure\bin\$(Configuration)\</Source>
22+
<Source>$(OutputPath)</Source>
2223
<Destination>lib\Net471</Destination>
2324
</NuGetContent>
2425
<NuGetContentProject Include="$(RepositoryRoot)\src\Azure\Azure.csproj" Condition="'$(NuGetPackSymbols)' == 'true'" />

src/packages/ConfigurationBuilders.Base.nupkg/Microsoft.Configuration.ConfigurationBuilders.Base.nuproj

+4-3
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,21 @@
55
<AssemblyName>Microsoft.Configuration.ConfigurationBuilders.Base</AssemblyName>
66
<NuGetPackageId>$(MSBuildProjectName)</NuGetPackageId>
77
<NuSpecFile>Microsoft.Configuration.ConfigurationBuilders.Base.nuspec</NuSpecFile>
8+
<IsPackage>true</IsPackage>
89
</PropertyGroup>
910
<ItemGroup>
1011
<NuGetContent Include="$(AssemblyName).dll">
11-
<Source>$(RepositoryRoot)\src\Base\bin\$(Configuration)\</Source>
12+
<Source>$(AssemblyPath)</Source>
1213
<Destination>lib\Net471</Destination>
1314
</NuGetContent>
1415
<!--
1516
<NuGetContent Include="$(AssemblyName).xml">
16-
<Source>$(RepositoryRoot)\src\Base\bin\$(Configuration)\</Source>
17+
<Source>$(OutputPath)</Source>
1718
<Destination>lib\Net471</Destination>
1819
</NuGetContent>
1920
-->
2021
<NuGetContent Include="$(AssemblyName).pdb" Condition="'$(NuGetPackSymbols)' == 'true'">
21-
<Source>$(RepositoryRoot)\src\Base\bin\$(Configuration)\</Source>
22+
<Source>$(OutputPath)</Source>
2223
<Destination>lib\Net471</Destination>
2324
</NuGetContent>
2425
<NuGetContentProject Include="$(RepositoryRoot)\src\Base\Base.csproj" Condition="'$(NuGetPackSymbols)' == 'true'" />

src/packages/ConfigurationBuilders.Environment.nupkg/Microsoft.Configuration.ConfigurationBuilders.Environment.nuproj

+4-3
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,21 @@
55
<AssemblyName>Microsoft.Configuration.ConfigurationBuilders.Environment</AssemblyName>
66
<NuGetPackageId>$(MSBuildProjectName)</NuGetPackageId>
77
<NuSpecFile>Microsoft.Configuration.ConfigurationBuilders.Environment.nuspec</NuSpecFile>
8+
<IsPackage>true</IsPackage>
89
</PropertyGroup>
910
<ItemGroup>
1011
<NuGetContent Include="$(AssemblyName).dll">
11-
<Source>$(RepositoryRoot)\src\Environment\bin\$(Configuration)\</Source>
12+
<Source>$(AssemblyPath)</Source>
1213
<Destination>lib\Net471</Destination>
1314
</NuGetContent>
1415
<!--
1516
<NuGetContent Include="$(AssemblyName).xml">
16-
<Source>$(RepositoryRoot)\src\Environment\bin\$(Configuration)\</Source>
17+
<Source>$(OutputPath)</Source>
1718
<Destination>lib\Net471</Destination>
1819
</NuGetContent>
1920
-->
2021
<NuGetContent Include="$(AssemblyName).pdb" Condition="'$(NuGetPackSymbols)' == 'true'">
21-
<Source>$(RepositoryRoot)\src\Environment\bin\$(Configuration)\</Source>
22+
<Source>$(OutputPath)</Source>
2223
<Destination>lib\Net471</Destination>
2324
</NuGetContent>
2425
<NuGetContentProject Include="$(RepositoryRoot)\src\Environment\Environment.csproj" Condition="'$(NuGetPackSymbols)' == 'true'" />

src/packages/ConfigurationBuilders.Json.nupkg/Microsoft.Configuration.ConfigurationBuilders.Json.nuproj

+4-3
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,21 @@
55
<AssemblyName>Microsoft.Configuration.ConfigurationBuilders.Json</AssemblyName>
66
<NuGetPackageId>$(MSBuildProjectName)</NuGetPackageId>
77
<NuSpecFile>Microsoft.Configuration.ConfigurationBuilders.Json.nuspec</NuSpecFile>
8+
<IsPackage>true</IsPackage>
89
</PropertyGroup>
910
<ItemGroup>
1011
<NuGetContent Include="$(AssemblyName).dll">
11-
<Source>$(RepositoryRoot)\src\Json\bin\$(Configuration)\</Source>
12+
<Source>$(AssemblyPath)</Source>
1213
<Destination>lib\Net471</Destination>
1314
</NuGetContent>
1415
<!--
1516
<NuGetContent Include="$(AssemblyName).xml">
16-
<Source>$(RepositoryRoot)\src\Json\bin\$(Configuration)\</Source>
17+
<Source>$(OutputPath)</Source>
1718
<Destination>lib\Net471</Destination>
1819
</NuGetContent>
1920
-->
2021
<NuGetContent Include="$(AssemblyName).pdb" Condition="'$(NuGetPackSymbols)' == 'true'">
21-
<Source>$(RepositoryRoot)\src\Json\bin\$(Configuration)\</Source>
22+
<Source>$(OutputPath)</Source>
2223
<Destination>lib\Net471</Destination>
2324
</NuGetContent>
2425
<NuGetContentProject Include="$(RepositoryRoot)\src\Json\Json.csproj" Condition="'$(NuGetPackSymbols)' == 'true'" />

src/packages/ConfigurationBuilders.UserSecrets.nupkg/Microsoft.Configuration.ConfigurationBuilders.UserSecrets.nuproj

+4-3
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,21 @@
55
<AssemblyName>Microsoft.Configuration.ConfigurationBuilders.UserSecrets</AssemblyName>
66
<NuGetPackageId>$(MSBuildProjectName)</NuGetPackageId>
77
<NuSpecFile>Microsoft.Configuration.ConfigurationBuilders.UserSecrets.nuspec</NuSpecFile>
8+
<IsPackage>true</IsPackage>
89
</PropertyGroup>
910
<ItemGroup>
1011
<NuGetContent Include="$(AssemblyName).dll">
11-
<Source>$(RepositoryRoot)\src\UserSecrets\bin\$(Configuration)\</Source>
12+
<Source>$(AssemblyPath)</Source>
1213
<Destination>lib\Net471</Destination>
1314
</NuGetContent>
1415
<!--
1516
<NuGetContent Include="$(AssemblyName).xml">
16-
<Source>$(RepositoryRoot)\src\UserSecrets\bin\$(Configuration)\</Source>
17+
<Source>$(OutputPath)</Source>
1718
<Destination>lib\Net471</Destination>
1819
</NuGetContent>
1920
-->
2021
<NuGetContent Include="$(AssemblyName).pdb" Condition="'$(NuGetPackSymbols)' == 'true'">
21-
<Source>$(RepositoryRoot)\src\UserSecrets\bin\$(Configuration)\</Source>
22+
<Source>$(OutputPath)</Source>
2223
<Destination>lib\Net471</Destination>
2324
</NuGetContent>
2425
<NuGetContentProject Include="$(RepositoryRoot)\src\UserSecrets\UserSecrets.csproj" Condition="'$(NuGetPackSymbols)' == 'true'" />

0 commit comments

Comments
 (0)