Commit dced6612 authored by shrabbit's avatar shrabbit
Browse files

初始化项目

parents
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+5 −0
Original line number Diff line number Diff line
bin/
obj/
/packages/
riderModule.iml
/_ReSharper.Caches/
 No newline at end of file

DeviceInfo.slnx

0 → 100644
+3 −0
Original line number Diff line number Diff line
<Solution>
  <Project Path="DeviceInfo/DeviceInfo.csproj" />
</Solution>

DeviceInfo/App.config

0 → 100644
+6 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <startup> 
        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />
    </startup>
</configuration>
 No newline at end of file

DeviceInfo/App.xaml

0 → 100644
+9 −0
Original line number Diff line number Diff line
<Application x:Class="DeviceInfo.App"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:local="clr-namespace:DeviceInfo"
             StartupUri="MainWindow.xaml">
    <Application.Resources>
         
    </Application.Resources>
</Application>

DeviceInfo/App.xaml.cs

0 → 100644
+9 −0
Original line number Diff line number Diff line
namespace DeviceInfo
{
    /// <summary>
    /// Interaction logic for App.xaml
    /// </summary>
    public partial class App
    {
    }
}
 No newline at end of file
Loading