25 lines
717 B
XML
25 lines
717 B
XML
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<Version>1.0.0</Version>
|
|
<AssemblyName>Oqtane.Application.Client.Oqtane</AssemblyName>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Shared\Oqtane.Application.Shared.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Oqtane.Client" Version="6.1.6" />
|
|
<PackageReference Include="Oqtane.Shared" Version="6.1.6" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<!-- there may be other elements here -->
|
|
<BlazorWebAssemblyEnableLinking>false</BlazorWebAssemblyEnableLinking>
|
|
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|