-
Notifications
You must be signed in to change notification settings - Fork 96
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 #70 from microsoft/fix68
Arrange for msbuild import to apply to pre-net40 projects
- Loading branch information
Showing
5 changed files
with
53 additions
and
3 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
39 changes: 39 additions & 0 deletions
39
src/Microsoft.Windows.CsWin32/Microsoft.Windows.CsWin32.nuspec
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,39 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd"> | ||
<metadata> | ||
<id>Microsoft.Windows.CsWin32</id> | ||
<version>$version$</version> | ||
<authors>Microsoft</authors> | ||
<developmentDependency>true</developmentDependency> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<license type="expression">MIT</license> | ||
<licenseUrl>https://licenses.nuget.org/MIT</licenseUrl> | ||
<projectUrl>https://github.com/Microsoft/CsWin32</projectUrl> | ||
<description>Microsoft Windows SDK Win32 API Source Generator</description> | ||
<releaseNotes>$PackageReleaseNotes$</releaseNotes> | ||
<copyright>© Microsoft Corporation. All rights reserved.</copyright> | ||
<repository type="git" url="https://github.com/microsoft/CsWin32.git" commit="$commit$" /> | ||
<dependencies> | ||
<group targetFramework="net20"> | ||
<dependency id="Microsoft.Windows.SDK.Win32Metadata" version="$MetadataVersion$" include="All" /> | ||
</group> | ||
<group targetFramework="net45"> | ||
<dependency id="Microsoft.Windows.SDK.Win32Metadata" version="$MetadataVersion$" include="All" /> | ||
<dependency id="System.Memory" version="4.5.4" include="All" /> | ||
</group> | ||
<group targetFramework=".NETStandard1.1"> | ||
<dependency id="Microsoft.Windows.SDK.Win32Metadata" version="$MetadataVersion$" include="All" /> | ||
<dependency id="System.Memory" version="4.5.4" include="All" /> | ||
</group> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="$BaseOutputPath$Microsoft.Windows.CsWin32.dll" target="analyzers\cs\Microsoft.Windows.CsWin32.dll" /> | ||
<file src="$BaseOutputPath$YamlDotNet.dll" target="analyzers\cs\YamlDotNet.dll" /> | ||
<file src="$BaseOutputPath$Microsoft.Bcl.AsyncInterfaces.dll" target="analyzers\cs\Microsoft.Bcl.AsyncInterfaces.dll" /> | ||
<file src="$BaseOutputPath$System.Text.Json.dll" target="analyzers\cs\System.Text.Json.dll" /> | ||
<file src="$BaseOutputPath$System.Text.Encodings.Web.dll" target="analyzers\cs\System.Text.Encodings.Web.dll" /> | ||
<file src="readme.txt" target="readme.txt" /> | ||
<file src="build\**" target="build\" /> | ||
</files> | ||
</package> |
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
3 changes: 3 additions & 0 deletions
3
src/Microsoft.Windows.CsWin32/build/net20/Microsoft.Windows.CsWin32.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,3 @@ | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Import Project="..\$(MSBuildThisFileName)$(MSBuildThisFileExtension)" /> | ||
</Project> |
3 changes: 3 additions & 0 deletions
3
src/Microsoft.Windows.CsWin32/build/netstandard1.0/Microsoft.Windows.CsWin32.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,3 @@ | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Import Project="..\$(MSBuildThisFileName)$(MSBuildThisFileExtension)" /> | ||
</Project> |