forked from aduskin/AduSkin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support WPF on .net core 3.1 and .net framework (aduskin#6)
* add vlc bin packages * move to src folder * move sln to root folder * 从 asp.net core 获取最新的 mimeType * 修改readme 里面 的 libVlc 依赖项 * 修复拼音筛选 * changeback to orginal sln * add .editorconfig * 解决就文件引用冲突 * * => #
- Loading branch information
Showing
17 changed files
with
1,279 additions
and
892 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[*] | ||
indent_style = space | ||
indent_size = 3 | ||
charset = utf-8 | ||
|
||
[.csproj] | ||
indent_size = 4 | ||
|
||
[.md] | ||
indent_size = 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio Version 16 | ||
VisualStudioVersion = 16.0.29806.167 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{943343AA-6C6F-46CB-BC3A-E4CFF7B7BE23}" | ||
EndProject | ||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AduSkin", "src\AduSkin\AduSkin.csproj", "{1703A7C5-7E70-4DF7-AC0D-63CBCCCFB4A1}" | ||
EndProject | ||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AduVideoPlayer", "src\AduVideoPlayer\AduVideoPlayer.csproj", "{EC2AAD8D-FDA7-4EE5-940D-440EE7B86A76}" | ||
EndProject | ||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AduSkin.Demo", "src\AduSkin.Demo\AduSkin.Demo.csproj", "{9569B8A3-5935-4D83-8AF2-519D5E666E82}" | ||
EndProject | ||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{95C4AEA1-D2C0-4939-AA50-82E1116B9DFA}" | ||
ProjectSection(SolutionItems) = preProject | ||
.editorconfig = .editorconfig | ||
README.md = README.md | ||
EndProjectSection | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{1703A7C5-7E70-4DF7-AC0D-63CBCCCFB4A1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{1703A7C5-7E70-4DF7-AC0D-63CBCCCFB4A1}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{1703A7C5-7E70-4DF7-AC0D-63CBCCCFB4A1}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{1703A7C5-7E70-4DF7-AC0D-63CBCCCFB4A1}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{EC2AAD8D-FDA7-4EE5-940D-440EE7B86A76}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{EC2AAD8D-FDA7-4EE5-940D-440EE7B86A76}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{EC2AAD8D-FDA7-4EE5-940D-440EE7B86A76}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{EC2AAD8D-FDA7-4EE5-940D-440EE7B86A76}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{9569B8A3-5935-4D83-8AF2-519D5E666E82}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{9569B8A3-5935-4D83-8AF2-519D5E666E82}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{9569B8A3-5935-4D83-8AF2-519D5E666E82}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{9569B8A3-5935-4D83-8AF2-519D5E666E82}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(NestedProjects) = preSolution | ||
{1703A7C5-7E70-4DF7-AC0D-63CBCCCFB4A1} = {943343AA-6C6F-46CB-BC3A-E4CFF7B7BE23} | ||
{EC2AAD8D-FDA7-4EE5-940D-440EE7B86A76} = {943343AA-6C6F-46CB-BC3A-E4CFF7B7BE23} | ||
{9569B8A3-5935-4D83-8AF2-519D5E666E82} = {943343AA-6C6F-46CB-BC3A-E4CFF7B7BE23} | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
SolutionGuid = {37AF0C02-BAB7-47D1-8CBD-682128501D0D} | ||
EndGlobalSection | ||
EndGlobal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
using System.Windows; | ||
|
||
[assembly: ThemeInfo(ResourceDictionaryLocation.None,ResourceDictionaryLocation.SourceAssembly)] | ||
|
||
[assembly: ThemeInfo( | ||
ResourceDictionaryLocation.None, //主题特定资源词典所处位置 | ||
//(当资源未在页面 | ||
//或应用程序资源字典中找到时使用) | ||
ResourceDictionaryLocation.SourceAssembly //常规资源词典所处位置 | ||
//(当资源未在页面 | ||
//、应用程序或任何主题专用资源字典中找到时使用) | ||
)] |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
using System.Windows; | ||
|
||
[assembly:ThemeInfo(ResourceDictionaryLocation.None,ResourceDictionaryLocation.SourceAssembly)] | ||
[assembly:ThemeInfo( | ||
ResourceDictionaryLocation.None, //主题特定资源词典所处位置 | ||
//(当资源未在页面 | ||
//或应用程序资源字典中找到时使用) | ||
ResourceDictionaryLocation.SourceAssembly //常规资源词典所处位置 | ||
//(当资源未在页面 | ||
//、应用程序或任何主题专用资源字典中找到时使用) | ||
)] |
Oops, something went wrong.