This commit is contained in:
Aaron-Junker 2021-11-04 16:11:38 +01:00
parent 652d71b4d4
commit 4d37cca441
3 changed files with 68 additions and 0 deletions

View file

@ -0,0 +1,32 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<PackageVersion>0.0.1</PackageVersion>
<Copyright>Copyright (C) 2021 Microsoft Corporation</Copyright>
<Company>Microsoft Corporation</Company>
<Product>PowerToys</Product>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="3.3.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Toolkit.Wpf.UI.Controls" Version="6.1.2" />
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.1018-prerelease" />
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.354">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="System.IO.Abstractions" Version="13.2.47" />
<PackageReference Include="WindowsThemeListener" Version="1.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\src\modules\previewpane\common\PreviewHandlerCommon.csproj" />
</ItemGroup>
</Project>

View file

@ -0,0 +1,22 @@

Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MonacoPreviewHandler", "MonacoPreviewHandler.csproj", "{E806785B-4893-4DA3-93B9-9572DCF4E759}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PreviewHandlerCommon", "..\..\..\src\modules\previewpane\common\PreviewHandlerCommon.csproj", "{AF2349B8-E5B6-4004-9502-687C1C7730B1}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{E806785B-4893-4DA3-93B9-9572DCF4E759}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E806785B-4893-4DA3-93B9-9572DCF4E759}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E806785B-4893-4DA3-93B9-9572DCF4E759}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E806785B-4893-4DA3-93B9-9572DCF4E759}.Release|Any CPU.Build.0 = Release|Any CPU
{AF2349B8-E5B6-4004-9502-687C1C7730B1}.Debug|Any CPU.ActiveCfg = Debug|x64
{AF2349B8-E5B6-4004-9502-687C1C7730B1}.Release|Any CPU.ActiveCfg = Release|x64
{AF2349B8-E5B6-4004-9502-687C1C7730B1}.Release|Any CPU.Build.0 = Release|x64
{AF2349B8-E5B6-4004-9502-687C1C7730B1}.Debug|Any CPU.Deploy.0 = Debug|x64
EndGlobalSection
EndGlobal

View file

@ -0,0 +1,14 @@
using System;
using Common;
using PreviewHandlerCommon;
namespace MonacoPreviewHandler
{
public class MonacoPreviewHandler : FormHandlerControl
{
public void Test()
{
System.Console.WriteLine("Hello");
}
}
}