Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
wieslawsoltes committed Mar 3, 2024
1 parent 45e0d56 commit 12bb3a3
Show file tree
Hide file tree
Showing 20 changed files with 8 additions and 265 deletions.
48 changes: 0 additions & 48 deletions .github/workflows/pages.yml

This file was deleted.

2 changes: 0 additions & 2 deletions NuGet.Config
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,5 @@
<packageSources>
<clear />
<add key="api.nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="avalonia" value="https://nuget.avaloniaui.net/repository/avalonia-all/index.json" protocolVersion="3" />
<add key="skiasharp" value="https://aka.ms/skiasharp-eap/index.json" protocolVersion="3" />
</packageSources>
</configuration>
7 changes: 0 additions & 7 deletions PanAndZoom.sln
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "docs", "docs", "{D27AEAB9-B
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AvaloniaDemo.Desktop", "samples\AvaloniaDemo.Desktop\AvaloniaDemo.Desktop.csproj", "{76443341-EF1B-4087-8F4D-38F3B04487B8}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AvaloniaDemo.Web", "samples\AvaloniaDemo.Web\AvaloniaDemo.Web.csproj", "{58F0B720-5C60-47BE-A441-98F6FFF10B48}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "github", "github", "{821DAFAE-8C09-45DE-A0F5-0AC0668457D4}"
ProjectSection(SolutionItems) = preProject
.github\workflows\build.yml = .github\workflows\build.yml
Expand Down Expand Up @@ -94,10 +92,6 @@ Global
{76443341-EF1B-4087-8F4D-38F3B04487B8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{76443341-EF1B-4087-8F4D-38F3B04487B8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{76443341-EF1B-4087-8F4D-38F3B04487B8}.Release|Any CPU.Build.0 = Release|Any CPU
{58F0B720-5C60-47BE-A441-98F6FFF10B48}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{58F0B720-5C60-47BE-A441-98F6FFF10B48}.Debug|Any CPU.Build.0 = Debug|Any CPU
{58F0B720-5C60-47BE-A441-98F6FFF10B48}.Release|Any CPU.ActiveCfg = Release|Any CPU
{58F0B720-5C60-47BE-A441-98F6FFF10B48}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand All @@ -112,7 +106,6 @@ Global
{E16CD9A4-AA47-4440-9EB7-B9E8E59EBFC5} = {6E241F85-FE51-47E5-B9C2-50AAA7FEC499}
{D83B9ECD-F143-4A6C-AFD7-F961174D824C} = {6E241F85-FE51-47E5-B9C2-50AAA7FEC499}
{76443341-EF1B-4087-8F4D-38F3B04487B8} = {BDB2F017-80B3-40D2-84A5-F006D4886B1A}
{58F0B720-5C60-47BE-A441-98F6FFF10B48} = {BDB2F017-80B3-40D2-84A5-F006D4886B1A}
{821DAFAE-8C09-45DE-A0F5-0AC0668457D4} = {6E241F85-FE51-47E5-B9C2-50AAA7FEC499}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
Expand Down
4 changes: 2 additions & 2 deletions build/Base.props
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<VersionPrefix>11.0.0.2</VersionPrefix>
<VersionPrefix>11.0.0.3</VersionPrefix>
<VersionSuffix></VersionSuffix>
<Authors>Wiesław Šoltés</Authors>
<Company>Wiesław Šoltés</Company>
<Copyright>Copyright © Wiesław Šoltés 2023</Copyright>
<Copyright>Copyright © Wiesław Šoltés 2024</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/wieslawsoltes/PanAndZoom</PackageProjectUrl>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion build/build/_build.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<IsPackable>False</IsPackable>
<NoWarn>CS0649;CS0169</NoWarn>
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "7.0.100",
"version": "8.0.100",
"rollForward": "latestMinor",
"allowPrerelease": true
}
Expand Down
2 changes: 1 addition & 1 deletion samples/AvaloniaDemo.Base/AvaloniaDemo.Base.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<OutputType>Library</OutputType>
<IsPackable>False</IsPackable>
<Nullable>enable</Nullable>
Expand Down
2 changes: 1 addition & 1 deletion samples/AvaloniaDemo.Desktop/AvaloniaDemo.Desktop.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<OutputType>WinExe</OutputType>
<IsPackable>False</IsPackable>
<Nullable>enable</Nullable>
Expand Down
5 changes: 0 additions & 5 deletions samples/AvaloniaDemo.Web/AppBundle/Logo.svg

This file was deleted.

64 changes: 0 additions & 64 deletions samples/AvaloniaDemo.Web/AppBundle/app.css

This file was deleted.

Binary file removed samples/AvaloniaDemo.Web/AppBundle/favicon.ico
Binary file not shown.
31 changes: 0 additions & 31 deletions samples/AvaloniaDemo.Web/AppBundle/index.html

This file was deleted.

16 changes: 0 additions & 16 deletions samples/AvaloniaDemo.Web/AppBundle/main.js

This file was deleted.

10 changes: 0 additions & 10 deletions samples/AvaloniaDemo.Web/AppBundle/staticwebapp.config.json

This file was deleted.

34 changes: 0 additions & 34 deletions samples/AvaloniaDemo.Web/AvaloniaDemo.Web.csproj

This file was deleted.

16 changes: 0 additions & 16 deletions samples/AvaloniaDemo.Web/Program.cs

This file was deleted.

13 changes: 0 additions & 13 deletions samples/AvaloniaDemo.Web/Roots.xml

This file was deleted.

11 changes: 0 additions & 11 deletions samples/AvaloniaDemo.Web/runtimeconfig.template.json

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0</TargetFrameworks>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<OutputType>Library</OutputType>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
<Nullable>enable</Nullable>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<OutputType>Library</OutputType>
<IsPackable>False</IsPackable>
<Nullable>enable</Nullable>
Expand Down

0 comments on commit 12bb3a3

Please sign in to comment.