Skip to content
This repository has been archived by the owner on Feb 4, 2022. It is now read-only.

Commit

Permalink
Update to .Net 5
Browse files Browse the repository at this point in the history
  • Loading branch information
aianlinb committed Dec 1, 2020
1 parent ae2bbff commit 4ef755d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions BundleExporter/BundleExporter.csproj
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net5.0</TargetFramework>
<Copyright>Copyright © 2020 aianlinb</Copyright>
<AssemblyVersion>2.2.0.2</AssemblyVersion>
<AssemblyVersion>2.3.0.0</AssemblyVersion>
<OutputType>Exe</OutputType>
</PropertyGroup>

Expand Down
4 changes: 2 additions & 2 deletions FileListGenerator/FileListGenerator.csproj
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net5.0</TargetFramework>
<Copyright>Copyright © 2020 aianlinb</Copyright>
<AssemblyVersion>2.2.0.2</AssemblyVersion>
<AssemblyVersion>2.3.0.0</AssemblyVersion>
<OutputType>Exe</OutputType>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion VisualBundle/MainWindow.xaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Window x:Class="VisualBundle.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="VisualBundle v2.2.0.2" Height="480" Width="850" Loaded="OnLoaded" Closing="OnWindowClosing" DragEnter="OnDragEnter" Drop="OnDragDrop" AllowDrop="True">
Title="VisualBundle v2.3.0" Height="480" Width="850" Loaded="OnLoaded" Closing="OnWindowClosing" DragEnter="OnDragEnter" Drop="OnDragDrop" AllowDrop="True">
<Window.Resources>
<HierarchicalDataTemplate x:Key="FileViewItemTemplate" DataType="x:Type VisualBundle:ItemModel" ItemsSource="{Binding ChildItems}">
<StackPanel Orientation="Horizontal">
Expand Down
2 changes: 1 addition & 1 deletion VisualBundle/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ private void OnTreeView1SelectedChanged(object sender, RoutedPropertyChangedEven
}
else //Selected Bundle File
{
offsetView.Text = br.indexOffset.ToString();
offsetView.Text = br.IndexOffset.ToString();
sizeView.Text = br.UncompressedSize.ToString();
noView.Text = br.bundleIndex.ToString();
var root = new FolderModel("Bundles2");
Expand Down
6 changes: 3 additions & 3 deletions VisualBundle/VisualBundle.csproj
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net5.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<Copyright>Copyright © 2020 aianlinb</Copyright>
<AssemblyVersion>2.2.0.2</AssemblyVersion>
<AssemblyVersion>2.3.0.0</AssemblyVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down

0 comments on commit 4ef755d

Please sign in to comment.