-
Notifications
You must be signed in to change notification settings - Fork 329
Migrated nuspec to csproj and improved packaging #54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
f3ac4ac
3bd65d5
5540015
69b7cef
008abc5
c5b3ae5
623de33
117c2c2
f599adf
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,7 +36,7 @@ | |
</ItemGroup> | ||
|
||
<ItemGroup Condition="'$(SignNugetPackages)' == 'true'"> | ||
<FilesToSign Include="$(OutDir)*.nupkg" Exclude="$(OutDir)*.symbols.nupkg"> | ||
<FilesToSign Include="$(OutDir)*.nupkg"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we should also sign snupkg, right? Since the plan is for it to go into nuget? @eerhardt what do you think? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Opps we merged right at the same moment I commented on this, but @imback82 I think we want to solve this. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I guess it depends on what we plan on doing with them... if we just use it to publish the symbols to the Microsoft Symbol Server during the build, they probably don't need to be signed. @dagood @mikem8361 - for thoughts/recommendations on what should be done with There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @tmat knows the most about There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. snupkgs should be published to NuGet.org and the PDBs to Microsoft Symbol servers. |
||
<Authenticode>NuGet</Authenticode> | ||
</FilesToSign> | ||
</ItemGroup> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" TreatAsLocalProperty="ExcludeRestorePackageImports"> | ||
<Import Project="..\src\csharp\Directory.Build.props" /> | ||
|
||
<PropertyGroup> | ||
<IsPackable>False</IsPackable> | ||
</PropertyGroup> | ||
</Project> |
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.