Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ The final project should look like this:
```xml
<Project Sdk="MSBuild.Sdk.Extras">
<PropertyGroup>
<TargetFrameworks>net46;uap10.0.19041;tizen8.0</TargetFrameworks>
<TargetFrameworks>net462;uap10.0.22621;tizen13.0</TargetFrameworks>
</PropertyGroup>
</Project>
```
Expand All @@ -81,7 +81,7 @@ Then again, you might want to override the version for just one project _OR_ if
```xml
<Project Sdk="MSBuild.Sdk.Extras/3.0.22">
<PropertyGroup>
<TargetFrameworks>net46;uap10.0.19041;tizen8.0</TargetFrameworks>
<TargetFrameworks>net462;uap10.0.22621;tizen13.0</TargetFrameworks>
</PropertyGroup>
</Project>
```
Expand Down
4 changes: 2 additions & 2 deletions Source/Directory.Build.targets
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
<Import Project="..\Tools\MSBuild.DevLocal.targets" Condition="'$(IsCloudBuild)' != 'true'"/>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All"/>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
</ItemGroup>

<ItemGroup Condition="'$(IsCloudBuild)' == 'true' and '$(DisableNerdBank)'!='true'">
<PackageReference Include="Nerdbank.GitVersioning" Version="3.4.244" PrivateAssets="All"/>
<PackageReference Include="Nerdbank.GitVersioning" Version="3.8.118" PrivateAssets="All"/>
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions Source/MSBuild.Sdk.Extras/Build/Platforms/Windows.targets
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@
<NugetTargetMoniker Condition="'$(_SdkShortFrameworkVersion)' == '10.0'">UAP,Version=v10.0</NugetTargetMoniker>

<!-- Calculate defaults based on 10.0 or specific version based on TFM to handle uap10.0, uap10.0.10240, etc -->
<TargetPlatformVersion Condition="'$(TargetPlatformVersion)' == '' AND '$(_SdkShortFrameworkVersion)' == '10.0'">10.0.17763.0</TargetPlatformVersion>
<TargetPlatformVersion Condition="'$(TargetPlatformVersion)' == '' AND '$(_SdkShortFrameworkVersion)' == '10.0'">10.0.22621.0</TargetPlatformVersion>
<TargetPlatformVersion Condition="'$(TargetPlatformVersion)' == ''">$([System.Version]::Parse('$(_SdkShortFrameworkVersion)')).0</TargetPlatformVersion>
<TargetPlatformMinVersion Condition="'$(TargetPlatformMinVersion)' == '' AND '$(_SdkShortFrameworkVersion)' == '10.0'">10.0.15063.0</TargetPlatformMinVersion>
<TargetPlatformMinVersion Condition="'$(TargetPlatformMinVersion)' == '' AND '$(_SdkShortFrameworkVersion)' == '10.0'">10.0.17763.0</TargetPlatformMinVersion>
<TargetPlatformMinVersion Condition="'$(TargetPlatformMinVersion)' == ''">$([System.Version]::Parse('$(_SdkShortFrameworkVersion)')).0</TargetPlatformMinVersion>

<CopyLocalLockFileAssemblies Condition="'$(CopyLocalLockFileAssemblies)' == ''">false</CopyLocalLockFileAssemblies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
Package Version property for Implicit Packages included in the props file
-->
<PropertyGroup Condition="'$(ExtrasUwpMetaPackageVersion)' == ''">
<ExtrasUwpMetaPackageVersion>6.2.12</ExtrasUwpMetaPackageVersion>
<ExtrasUwpMetaPackageVersion>6.2.14</ExtrasUwpMetaPackageVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(ExtrasTizenMetaPackageVersion)' == ''">
<ExtrasTizenMetaPackageVersion>8.0.0.15631</ExtrasTizenMetaPackageVersion>
<ExtrasTizenMetaPackageVersion>13.0.0.19198</ExtrasTizenMetaPackageVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(ExtrasNetfxMetaPackageVersion)' == ''">
<ExtrasNetfxMetaPackageVersion>1.0.2</ExtrasNetfxMetaPackageVersion>
<ExtrasNetfxMetaPackageVersion>1.0.3</ExtrasNetfxMetaPackageVersion>
</PropertyGroup>

<PropertyGroup>
Expand Down
Loading