-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPlaszczakowo.csproj
23 lines (23 loc) · 1 KB
/
Plaszczakowo.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<AssemblyName>$(AssemblyName.Replace(' ', '_'))</AssemblyName>
</PropertyGroup>
<ItemGroup>
<Content Update="electron.manifest.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Blazor.Extensions.Canvas" Version="1.1.1"/>
<PackageReference Include="Blazored.Modal" Version="7.3.1"/>
<PackageReference Include="BlazorTransitionableRoute" Version="4.0.0"/>
<PackageReference Include="ElectronNET.API" Version="23.6.2"/>
</ItemGroup>
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
<Exec Command="npm install" WorkingDirectory="JsDependencies/"/>
<Exec Command="npm run build" WorkingDirectory="JsDependencies/"/>
</Target>
</Project>