-
Notifications
You must be signed in to change notification settings - Fork 0
/
Muszilla.csproj
69 lines (60 loc) · 2.66 KB
/
Muszilla.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Views\pictures\**" />
<Content Remove="Views\pictures\**" />
<EmbeddedResource Remove="Views\pictures\**" />
<None Remove="Views\pictures\**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Controllers\RegisterController.cs" />
</ItemGroup>
<ItemGroup>
<Content Remove="wwwroot\css\User_Homepage.css" />
</ItemGroup>
<ItemGroup>
<None Include="wwwroot\css\User_Homepage.css" />
<None Include="wwwroot\Music\anewbeginning.mp3" />
<None Include="wwwroot\Music\buddy.mp3" />
<None Include="wwwroot\Music\creativeminds.mp3" />
<None Include="wwwroot\Music\cute.mp3" />
<None Include="wwwroot\Music\goinghigher.mp3" />
<None Include="wwwroot\Music\jazzyfrenchy.mp3" />
<None Include="wwwroot\Music\littleidea.mp3" />
<None Include="wwwroot\Music\ukulele.mp3" />
<None Include="wwwroot\Pictures\emptyImage.png" />
<None Include="wwwroot\Pictures\headPhones.jpg" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Storage.Blobs" Version="12.8.1" />
<PackageReference Include="Microsoft.AspNet.Mvc" Version="5.2.7" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Abstractions" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Session" Version="2.2.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.4" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.4" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="5.0.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="5.0.0" />
<PackageReference Include="Sitecore.FakeDb" Version="2.0.1" />
<PackageReference Include="SQLitePCLRaw.core" Version="2.0.4" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="5.0.0" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.2" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>