Skip to content

Commit

Permalink
Merge pull request #465 from workgroupengineering/fixes/Nuget_Version
Browse files Browse the repository at this point in the history
feat: Add AvaloniaVersion MSBuild Property
  • Loading branch information
maxkatz6 authored Mar 28, 2024
2 parents aa5da47 + 16989fe commit 377ce6e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<PropertyGroup>
<AvaloniaTemplatesPackageName>Avalonia.Templates</AvaloniaTemplatesPackageName>
<AvaloniaTemplatesPackageVersion>11.0.10</AvaloniaTemplatesPackageVersion>
<AvaloniaVersion>11.0.7</AvaloniaVersion>
<LangVersion>11.0</LangVersion>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion tests/CompletionEngineTests/CompletionEngineTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.0" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="Avalonia" Version="11.0.4" />
<PackageReference Include="Avalonia" Version="$(AvaloniaVersion)" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion tests/TestAssembly1/TestAssembly1.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Avalonia" Version="11.0.0-preview4" />
<PackageReference Include="Avalonia" Version="$(AvaloniaVersion)" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion tests/TestAssembly2/TestAssembly2.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Avalonia" Version="11.0.0-preview4" />
<PackageReference Include="Avalonia" Version="$(AvaloniaVersion)" />
</ItemGroup>
</Project>

0 comments on commit 377ce6e

Please sign in to comment.