-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathStack Solver.csproj
40 lines (33 loc) · 1015 Bytes
/
Stack Solver.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net7.0-windows</TargetFramework>
<RootNamespace>Stack_Solver</RootNamespace>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<ApplicationIcon>Box.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<None Remove="stacksolverlogo.png" />
</ItemGroup>
<ItemGroup>
<COMReference Include="Microsoft.Office.Interop.Excel">
<WrapperTool>tlbimp</WrapperTool>
<VersionMinor>9</VersionMinor>
<VersionMajor>1</VersionMajor>
<Guid>00020813-0000-0000-c000-000000000046</Guid>
<Lcid>0</Lcid>
<Isolated>false</Isolated>
<EmbedInteropTypes>true</EmbedInteropTypes>
</COMReference>
</ItemGroup>
<ItemGroup>
<Content Include="Box.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="WPF-UI" Version="3.0.4" />
</ItemGroup>
<ItemGroup>
<Resource Include="stacksolverlogo.png" />
</ItemGroup>
</Project>