-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathShopWebApp.csproj
107 lines (97 loc) · 3.91 KB
/
ShopWebApp.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net5.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<StartupObject>ShopWebApp.App</StartupObject>
<Platforms>AnyCPU;x64;x86</Platforms>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ClosedXML" Version="0.95.4" />
<PackageReference Include="FluentFTP" Version="33.1.3" />
<PackageReference Include="LiveCharts.Wpf" Version="0.9.7" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="5.0.4" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.4" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.4" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="5.0.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="NLog" Version="4.7.9" />
</ItemGroup>
<ItemGroup>
<Content Remove="C:\Users\user\.nuget\packages\microsoft.web.webview2\1.0.664.37\build\\..\runtimes\win-arm\native\WebView2Loader.dll" />
</ItemGroup>
<ItemGroup>
<Content Remove="C:\Users\user\.nuget\packages\microsoft.web.webview2\1.0.664.37\build\\..\runtimes\win-x64\native\WebView2Loader.dll" />
</ItemGroup>
<ItemGroup>
<Content Remove="C:\Users\user\.nuget\packages\microsoft.web.webview2\1.0.664.37\build\\..\runtimes\win-x86\native\WebView2Loader.dll" />
</ItemGroup>
<ItemGroup>
<None Remove="Icons\AddToCollection.png" />
<None Remove="Icons\ExportToExcel.png" />
<None Remove="Icons\Gift.png" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ShopWeb.Shared\ShopWeb.Shared.csproj" />
<ProjectReference Include="..\ShopWebData\ShopWeb.Data.csproj" />
</ItemGroup>
<ItemGroup>
<Resource Include="Icons\AddToCollection.png" />
<Resource Include="Icons\ExportToExcel.png" />
<Resource Include="Icons\Gift.png" />
</ItemGroup>
<ItemGroup>
<Compile Update="Pages\ProductsCollections.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="Pages\Orders.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="Pages\Shops - Copy - Copy %282%29.xaml.cs">
<SubType>Code</SubType>
<DependentUpon>Shops.xaml.cs</DependentUpon>
</Compile>
<Compile Update="Pages\Shops - Copy - Copy - Copy.xaml.cs">
<SubType>Code</SubType>
<DependentUpon>Shops - Copy.xaml.cs</DependentUpon>
</Compile>
<Compile Update="Pages\Shops - Copy - Copy.xaml.cs">
<SubType>Code</SubType>
<DependentUpon>Shops - Copy.xaml.cs</DependentUpon>
</Compile>
<Compile Update="Pages\Shops - Copy.xaml.cs">
<SubType>Code</SubType>
<DependentUpon>Shops.xaml.cs</DependentUpon>
</Compile>
<Compile Update="Windows\CategoryImages.xaml.cs">
<SubType>Code</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<Page Update="Pages\ProductsCollections.xaml">
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
<SubType>Designer</SubType>
</Page>
<Page Update="Pages\Orders.xaml">
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
<SubType>Designer</SubType>
</Page>
<Page Update="Pages\Reports\Products\Category\StatisticsByCategoryPage.xaml">
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
<SubType>Designer</SubType>
</Page>
<Page Update="Pages\Reports\StatisticsByHourPage.xaml">
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
</Page>
<Page Update="Pages\Shops - Copy.xaml">
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
<SubType>Designer</SubType>
</Page>
<Page Update="Windows\CategoryImages.xaml">
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
<SubType>Designer</SubType>
</Page>
</ItemGroup>
</Project>