-
Notifications
You must be signed in to change notification settings - Fork 4
/
WinForms2AvaloniaConverter.csproj
44 lines (37 loc) · 1.77 KB
/
WinForms2AvaloniaConverter.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0-windows;net472</TargetFrameworks>
<Nullable>disable</Nullable>
<EnableDefaultItems>False</EnableDefaultItems>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>disable</ImplicitUsings>
<RootNamespace>WAConverter</RootNamespace>
<AssemblyName>WAConverter</AssemblyName>
</PropertyGroup>
<ItemGroup>
<Compile Remove="WAConverter\Templates\CodeFileTemplate.cs" />
<Compile Remove="WAConverter\Templates\ViewModelClassTemplate.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="WAConverter\AppTemplate\App.axaml.cs" />
<EmbeddedResource Include="WAConverter\AppTemplate\MainWindow.axaml.cs" />
<EmbeddedResource Include="WAConverter\AppTemplate\Program.cs" />
<Compile Include="WAConverter\XamlConverter.Config.cs" />
<Compile Include="WAConverter\XamlConverter.cs" />
<Compile Include="WAConverter\Forms.cs" />
<Compile Include="WAConverter\Utils.cs" />
<Compile Include="WAConverter\XamlConverter.Templates.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="WAConverter\Templates\CodeFileTemplate.cs" />
<EmbeddedResource Include="WAConverter\Templates\ViewModelClassTemplate.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="WAConverter\AppTemplate\App.axaml" />
<EmbeddedResource Include="WAConverter\AppTemplate\ConvertedAvalonia.csproj" />
<EmbeddedResource Include="WAConverter\AppTemplate\MainWindow.axaml" />
<EmbeddedResource Include="WAConverter\AppTemplate\nuget.config" />
<EmbeddedResource Include="WAConverter\AppTemplate\packages\Eremex.Avalonia.Controls.0.0.99-demo.nupkg" />
</ItemGroup>
</Project>