Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

プロジェクト名,名前空間,実行ファイル名をVRChatLifelogに変更 #29

Merged
merged 1 commit into from
Apr 6, 2024
Merged
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
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\VRChatLogWathcer\VRChatLogWathcer.csproj" />
<ProjectReference Include="..\VRChatLifelog\VRChatLifelog.csproj" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using VRChatLogWathcer.Data;
using VRChatLogWathcer.Models;
using VRChatLifelog.Data;
using VRChatLifelog.Models;

namespace VRChatLogWatcherTest
namespace VRChatLifelogTest
{
public class VRChatLogUtilTest
{
Expand Down
4 changes: 2 additions & 2 deletions VRChatLifelog.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.1.32210.238
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VRChatLogWathcer", "VRChatLogWathcer\VRChatLogWathcer.csproj", "{085F0F58-852A-40BD-9669-EFEDE826036D}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VRChatLifelog", "VRChatLifelog\VRChatLifelog.csproj", "{085F0F58-852A-40BD-9669-EFEDE826036D}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VRChatLogWatcher.Tests", "VRChatLogWatcher.Tests\VRChatLogWatcher.Tests.csproj", "{667D8B93-548D-4F0B-8757-2D35C27A04AA}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VRChatLifelog.Tests", "VRChatLifelog.Tests\VRChatLifelog.Tests.csproj", "{667D8B93-548D-4F0B-8757-2D35C27A04AA}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
2 changes: 1 addition & 1 deletion VRChatLogWathcer/App.xaml → VRChatLifelog/App.xaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Application x:Class="VRChatLogWathcer.App"
<Application x:Class="VRChatLifelog.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Application.Resources>
Expand Down
6 changes: 3 additions & 3 deletions VRChatLogWathcer/App.xaml.cs → VRChatLifelog/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Threading;
using VRChatLogWathcer.Data;
using VRChatLogWathcer.Services;
using VRChatLifelog.Data;
using VRChatLifelog.Services;

namespace VRChatLogWathcer
namespace VRChatLifelog
{
public partial class App : Application
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<UserControl x:Class="VRChatLogWathcer.Controls.InstanceTypeIcon"
<UserControl x:Class="VRChatLifelog.Controls.InstanceTypeIcon"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:VRChatLogWathcer.Controls"
xmlns:local="clr-namespace:VRChatLifelog.Controls"
xmlns:iconPacks="http://metro.mahapps.com/winfx/xaml/iconpacks"
mc:Ignorable="d"
d:DesignHeight="20" d:DesignWidth="20">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Media;
using VRChatLogWathcer.Data;
using VRChatLifelog.Data;

namespace VRChatLogWathcer.Controls
namespace VRChatLifelog.Controls
{
/// <summary>
/// InstanceTypeIcon.xaml の相互作用ロジック
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<UserControl x:Class="VRChatLogWathcer.Controls.JoinLeaveTime"
<UserControl x:Class="VRChatLifelog.Controls.JoinLeaveTime"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:VRChatLogWathcer.Controls"
xmlns:local="clr-namespace:VRChatLifelog.Controls"
mc:Ignorable="d"
d:DesignHeight="20" d:DesignWidth="200">
<StackPanel Orientation="Horizontal">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Windows;
using System.Windows.Controls;

namespace VRChatLogWathcer.Controls
namespace VRChatLifelog.Controls
{
/// <summary>
/// JoinLeaveTime.xaml の相互作用ロジック
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace VRChatLogWathcer.Data
namespace VRChatLifelog.Data
{
public class Instance
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace VRChatLogWathcer.Data
namespace VRChatLifelog.Data
{
public class JoinLeaveHistory
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System;
using System.IO;

namespace VRChatLogWathcer.Data
namespace VRChatLifelog.Data
{
internal class LifelogContext : DbContext
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;

namespace VRChatLogWathcer.Data
namespace VRChatLifelog.Data
{
public class LocationHistory
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Linq;
using System.Text.RegularExpressions;

namespace VRChatLogWathcer.Data
namespace VRChatLifelog.Data
{
internal class LogItem
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace VRChatLogWathcer.Data
namespace VRChatLifelog.Data
{
public class VRChatLogFileInfo
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Text;
using System.Threading.Tasks;

namespace VRChatLogWathcer.Extensions
namespace VRChatLifelog.Extensions
{
internal static class IEnumerableExtensions
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.IO;
using System.Security;

namespace VRChatLogWathcer.Extensions
namespace VRChatLifelog.Extensions
{
/// <summary>
/// RegistryKeyの拡張メソッドクラス
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#nullable disable

namespace VRChatLogWathcer.Migrations
namespace VRChatLifelog.Migrations
{
public partial class InitialCreate : Migration
{
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#nullable disable

namespace VRChatLogWathcer.Migrations
namespace VRChatLifelog.Migrations
{
public partial class AddWorldNameColumn : Migration
{
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#nullable disable

namespace VRChatLogWathcer.Migrations
namespace VRChatLifelog.Migrations
{
public partial class AddInstanceDetails : Migration
{
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#nullable disable

namespace VRChatLogWathcer.Migrations
namespace VRChatLifelog.Migrations
{
public partial class PrepareForRelationAddition : Migration
{
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#nullable disable

namespace VRChatLogWathcer.Migrations
namespace VRChatLifelog.Migrations
{
public partial class AddIdToJoinLeaveHistory : Migration
{
Expand Down
Loading
Loading