-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathBadgeMeUp.csproj
47 lines (39 loc) · 1.87 KB
/
BadgeMeUp.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>3b04685a-7ad5-4f1f-ae8f-99b2a51b0c1e</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<None Remove="BadgeAwardEmail.html" />
<None Remove="boring-default.jpg" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="BadgeAwardEmail.html" />
</ItemGroup>
<ItemGroup>
<None Include="wwwroot\images\badge-types.png" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Storage.Blobs" Version="12.10.0" />
<PackageReference Include="Humanizer.Core" Version="2.14.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Graph" Version="4.17.0" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="6.0.1" />
<PackageReference Include="SixLabors.ImageSharp" Version="2.0.0" />
<PackageReference Include="System.Drawing.Common" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<Content Include="assets\boring-default.jpg">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<Target Name="CreateLocalAppSettings" BeforeTargets="BeforeBuild">
<Copy SourceFiles="appsettings.json" DestinationFiles="appsettings.development.json" Condition="!Exists('appsettings.development.json')" />
</Target>
</Project>