Skip to content

Commit

Permalink
fixed nuget resolver
Browse files Browse the repository at this point in the history
  • Loading branch information
Doprez committed Nov 23, 2023
1 parent 38fa1cb commit 8bf024a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Import Project="..\..\targets\Stride.props" />

<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
<TargetFrameworks>net8.0-windows7.0;net472</TargetFrameworks>
<RootNamespace>Stride.VisualStudio.Commands</RootNamespace>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Import Project="..\..\targets\Stride.props" />
<PropertyGroup>
<StrideAssemblyProcessor>false</StrideAssemblyProcessor>
<TargetFramework>net8.0-windows</TargetFramework>
<TargetFramework>net472</TargetFramework>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<StrideBuildTags>WindowsTools</StrideBuildTags>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ internal static async Task<PackageInfo> FindStrideSdkDir(string solution, string
{
// Try both net8.0 and net472
var success = false;
foreach (var folder in new[] { "net8.0" })
foreach (var folder in new[] { "net8.0-windows7.0", "net472" })
{
var logger = new Logger();
var solutionRoot = Path.GetDirectoryName(solution);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"Stride.VisualStudio.Package": {
"commandName": "Executable",
"executablePath": "$(DevEnvDir)\\devenv.exe",
"commandLineArgs": "/RootSuffix Stride /updateconfiguration"
"commandLineArgs": "/RootSuffix Stride"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<RootNamespace>Stride.VisualStudio</RootNamespace>
<SignAssembly>false</SignAssembly>
<AssemblyOriginatorKeyFile>Key.snk</AssemblyOriginatorKeyFile>
<TargetFramework>net8.0-windows</TargetFramework>
<TargetFramework>net472</TargetFramework>
<StrideAssemblyProcessor>false</StrideAssemblyProcessor>
<StrideBuildTags>WindowsTools</StrideBuildTags>
<StrideSkipAutoPack>true</StrideSkipAutoPack>
Expand Down

0 comments on commit 8bf024a

Please sign in to comment.