-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathWPlot.csproj
More file actions
50 lines (42 loc) · 1.27 KB
/
WPlot.csproj
File metadata and controls
50 lines (42 loc) · 1.27 KB
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
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<UseWPF>true</UseWPF>
<RootNamespace>Where1.WPlot</RootNamespace>
<ApplicationIcon>Icon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<None Remove="Dialogs\file_icon.png" />
<None Remove="logo_full_transparent.png" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="3.5.0" />
<PackageReference Include="ScottPlot.WPF" Version="4.0.48" />
</ItemGroup>
<ItemGroup>
<Resource Include="Dialogs\file_icon.png" />
<Resource Include="logo_full_transparent.png" />
</ItemGroup>
<ItemGroup>
<Compile Update="Dialogs\SpanSettingDialog.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="Dialogs\LineSettingsDialog.xaml.cs">
<SubType>Code</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<Page Update="Dialogs\SpanSettingDialog.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="Dialogs\LineSettingsDialog.xaml">
<SubType>Designer</SubType>
</Page>
</ItemGroup>
<ItemGroup>
<Content Include="Dependency Licenses\**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>