2024-05-09 20:44:40 -05:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2024-06-05 01:21:31 -05:00
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2024-05-09 20:44:40 -05:00
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
2024-06-11 23:49:54 -05:00
|
|
|
|
<ApplicationIcon>LANCommanderDark.ico</ApplicationIcon>
|
2024-05-09 20:44:40 -05:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-06-05 01:21:31 -05:00
|
|
|
|
<Content Update="wwwroot\**">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
2024-05-09 20:44:40 -05:00
|
|
|
|
</ItemGroup>
|
2024-06-05 01:21:31 -05:00
|
|
|
|
|
2024-05-09 20:44:40 -05:00
|
|
|
|
<ItemGroup>
|
2024-07-07 20:28:55 -05:00
|
|
|
|
<PackageReference Include="AntDesign" Version="0.19.4" />
|
2024-06-20 00:22:03 -05:00
|
|
|
|
<PackageReference Include="BootstrapBlazor.PdfReader" Version="8.0.4" />
|
2024-06-09 00:22:54 -05:00
|
|
|
|
<PackageReference Include="ByteSize" Version="2.1.2" />
|
2024-07-08 17:46:58 -05:00
|
|
|
|
<PackageReference Include="Emzi0767.NtfsDataStreams" Version="1.0.0" />
|
2024-06-02 17:23:46 -05:00
|
|
|
|
<PackageReference Include="Microsoft.Toolkit.Uwp.Notifications" Version="7.1.3" />
|
2024-05-21 20:51:09 -05:00
|
|
|
|
<PackageReference Include="NLog" Version="5.3.2" />
|
2024-06-19 00:40:38 -05:00
|
|
|
|
<PackageReference Include="NLog.Extensions.Logging" Version="5.3.11" />
|
2024-06-05 01:21:31 -05:00
|
|
|
|
<PackageReference Include="Photino.Blazor" Version="3.0.11" />
|
|
|
|
|
|
<PackageReference Include="Photino.NET" Version="3.0.14" />
|
2024-05-31 23:49:24 -05:00
|
|
|
|
<PackageReference Include="rix0rrr.BeaconLib" Version="1.0.2" />
|
2024-05-09 20:44:40 -05:00
|
|
|
|
</ItemGroup>
|
2024-06-05 01:21:31 -05:00
|
|
|
|
|
2024-05-09 20:44:40 -05:00
|
|
|
|
<ItemGroup>
|
2024-06-05 01:21:31 -05:00
|
|
|
|
<ProjectReference Include="..\LANCommander.Client.Data\LANCommander.Client.Data.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\LANCommander.SDK\LANCommander.SDK.csproj" />
|
2024-06-18 18:37:11 -05:00
|
|
|
|
<ProjectReference Include="..\Photino.Blazor.CustomWindow\Photino.Blazor.CustomWindow\Photino.Blazor.CustomWindow.csproj" />
|
2024-05-09 20:44:40 -05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2024-06-05 01:21:31 -05:00
|
|
|
|
<Target Name="CompileGlobalSass" BeforeTargets="Compile">
|
|
|
|
|
|
<Message Text="Compiling global SCSS files" Importance="high" />
|
|
|
|
|
|
<Exec Command="npm run sass -- Styles:wwwroot/css" />
|
|
|
|
|
|
</Target>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ComponentScssFiles Include="**/*/*.scss" Exclude="node_modules/**;wwwroot/**;Styles/**" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-06-11 23:49:54 -05:00
|
|
|
|
<Content Include="LANCommander.ico">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
|
|
|
|
|
<Content Include="LANCommanderDark.ico" />
|
2024-05-09 20:44:40 -05:00
|
|
|
|
</ItemGroup>
|
2024-06-11 21:43:12 -05:00
|
|
|
|
|
2024-06-11 23:49:54 -05:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Update="LANCommanderDark.ico">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
</ItemGroup>
|
2024-07-02 20:59:24 -05:00
|
|
|
|
|
|
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
|
|
|
|
<Exec Command="Copy $(ProjectDir)..\LANCommander.PowerShell\bin\$(ConfigurationName)\LANCommander.PowerShell.dll $(TargetDir)LANCommander.PowerShell.dll
Copy $(ProjectDir)..\LANCommander.PowerShell\bin\$(ConfigurationName)\LANCommander.PowerShell.psd1 $(TargetDir)LANCommander.PowerShell.psd1
PowerShell -Command "(Get-Content '$(TargetDir)LANCommander.PowerShell.psd1') -replace 'YamlDotNet.dll', '..\..\YamlDotNet.dll' | Out-File '$(TargetDir)LANCommander.PowerShell.psd1'"" />
|
|
|
|
|
|
</Target>
|
2024-05-09 20:44:40 -05:00
|
|
|
|
</Project>
|