-
Notifications
You must be signed in to change notification settings - Fork 0
/
MyDesktopCards.csproj
55 lines (40 loc) · 1.84 KB
/
MyDesktopCards.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
<ItemGroup>
<None Remove="CZGL.SystemInfo.dll" />
</ItemGroup>
<ItemGroup>
<Resource Include="Assets\schedule-logo.png" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\MaterialDesign3\MaterialDesign3.csproj">
<Private>false</Private>
<ExcludeAssets>runtime</ExcludeAssets>
</ProjectReference>
<ProjectReference Include="..\..\MyWidgets.SDK\MyWidgets.SDK.csproj">
<Private>false</Private>
<ExcludeAssets>runtime</ExcludeAssets>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Reference Include="CZGL.SystemInfo">
<HintPath>CZGL.SystemInfo.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="FftSharp" Version="1.1.6" />
<PackageReference Include="NAudio" Version="2.1.0" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<!--<Exec Command="xcopy "$(TargetDir)" "$(SolutionDir)MainApp\bin\Release\net6.0-windows\Plugins\Default" /y/e" />-->
<Exec IgnoreExitCode="true" Command="mkdir "$(SolutionDir)build\Release\net6.0-windows\Plugins\$(ProjectName)"" />
<Exec IgnoreExitCode="true" Command="mkdir "$(SolutionDir)build\Debug\net6.0-windows\Plugins\$(ProjectName)"" />
<Exec Condition=" '$(Configuration)' == 'Release' " Command="xcopy "$(TargetDir)" "$(SolutionDir)build\Release\net6.0-windows\Plugins\$(ProjectName)" /y/e" />
<Exec Condition=" '$(Configuration)' == 'Debug' " Command="xcopy "$(TargetDir)" "$(SolutionDir)build\Debug\net6.0-windows\Plugins\$(ProjectName)" /y/e" />
</Target>
</Project>