-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathTensorStack.WPF.csproj
More file actions
104 lines (96 loc) · 3.94 KB
/
TensorStack.WPF.csproj
File metadata and controls
104 lines (96 loc) · 3.94 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
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net9.0-windows10.0.17763.0;net10.0-windows10.0.17763.0</TargetFrameworks>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<PlatformTarget>x64</PlatformTarget>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
</PropertyGroup>
<!--Projects-->
<ItemGroup Condition=" '$(Configuration)' == 'Debug'">
<ProjectReference Include="..\TensorStack.Common\TensorStack.Common.csproj" />
<ProjectReference Include="..\TensorStack.Image.BitmapImage\TensorStack.Image.BitmapImage.csproj" />
<ProjectReference Include="..\TensorStack.Video.Windows\TensorStack.Video.Windows.csproj" />
<ProjectReference Include="..\TensorStack.Audio.Windows\TensorStack.Audio.Windows.csproj" />
</ItemGroup>
<!--Packages-->
<ItemGroup Condition=" '$(Configuration)' == 'Release'">
<PackageReference Include="TensorStack.Common" Version="$(Version)" />
<PackageReference Include="TensorStack.Image.BitmapImage" Version="$(Version)" />
<PackageReference Include="TensorStack.Video.Windows" Version="$(Version)" />
<PackageReference Include="TensorStack.Audio.Windows" Version="$(Version)" />
</ItemGroup>
<!--Common Packages-->
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.0" />
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.135" />
</ItemGroup>
<!--Fonts-->
<ItemGroup>
<Resource Include="Fonts\Brands-Regular-400.otf" />
<Resource Include="Fonts\Duotone-Solid-900.otf" />
<Resource Include="Fonts\Light-300.otf" />
<Resource Include="Fonts\Regular-400.otf" />
<Resource Include="Fonts\Sharp-Light-300.otf" />
<Resource Include="Fonts\Sharp-Regular-400.otf" />
<Resource Include="Fonts\Sharp-Solid-900.otf" />
<Resource Include="Fonts\Sharp-Thin-100.otf" />
<Resource Include="Fonts\Solid-900.otf" />
<Resource Include="Fonts\Thin-100.otf" />
</ItemGroup>
<!--Images-->
<ItemGroup>
<Resource Include="Images\Icon.ico" />
<Resource Include="Images\Icon.png" />
<Resource Include="Images\Icon-Large.png" />
<Resource Include="Images\PlaceholderAudio.png" />
<Resource Include="Images\PlaceholderImage.png" />
<Resource Include="Images\PlaceholderVideo.png" />
<Resource Include="Images\Tensorstack-720-Gray.png" />
<Resource Include="Images\Tensorstack-720.png" />
<Resource Include="Images\tensorstack-long.png" />
<Resource Include="Images\Tensorstack-Text.png" />
<Resource Include="Images\Tensorstack.png" />
</ItemGroup>
<!--Binaries-->
<ItemGroup>
<Reference Include="ColorPicker">
<HintPath>ColorPicker.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Include="ColorPicker.dll" PackagePath="lib/net9.0-windows10.0.17763/">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<PackageCopyToOutput>true</PackageCopyToOutput>
<Pack>true</Pack>
</None>
<None Include="ColorPicker.dll" PackagePath="lib/net10.0-windows10.0.17763/">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<PackageCopyToOutput>true</PackageCopyToOutput>
<Pack>true</Pack>
</None>
</ItemGroup>
<!--Nuget Settings-->
<PropertyGroup>
<Title>$(AssemblyName)</Title>
<PackageId>$(AssemblyName)</PackageId>
<Product>$(AssemblyName)</Product>
<PackageIcon>Icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup Condition="'$(Configuration)' == 'Debug'">
<None Remove="README.md" />
<None Remove="Icon.png" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)' == 'Release'">
<None Include="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\Assets\Icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>