-
Notifications
You must be signed in to change notification settings - Fork 0
/
MailMerge.csproj
25 lines (22 loc) · 1.17 KB
/
MailMerge.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
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<InvariantGlobalization>true</InvariantGlobalization>
<BlazorEnableTimeZoneSupport>false</BlazorEnableTimeZoneSupport>
<ObfuscationMode>Xor</ObfuscationMode>
<RenameDllsTo>bin</RenameDllsTo>
<XorKey>a</XorKey>
</PropertyGroup>
<ItemGroup>
<TrimmerRootAssembly Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="7.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="7.0.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.Authentication.WebAssembly.Msal" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Http" Version="7.0.0" />
<PackageReference Include="Microsoft.Graph" Version="4.54.0" />
<PackageReference Include="MudBlazor" Version="6.2.0" />
<PackageReference Include="BlazorWasmAntivirusProtection" Version="2.4.5" />
</ItemGroup>
</Project>