-
-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathNosCore.Data.csproj
More file actions
82 lines (70 loc) · 3.01 KB
/
Copy pathNosCore.Data.csproj
File metadata and controls
82 lines (70 loc) · 3.01 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<TieredCompilation>true</TieredCompilation>
<UseNETCoreGenerator>true</UseNETCoreGenerator>
<EmitCompilerGeneratedFiles>false</EmitCompilerGeneratedFiles>
<CompilerGeneratedFilesOutputPath>Generated</CompilerGeneratedFilesOutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>..\..\build\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>..\..\build\</OutputPath>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\tools\NosCore.DtoGenerator\NosCore.DtoGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
<AdditionalFiles Include="..\NosCore.Database\NosCore.Database.csproj" />
<Compile Condition="Exists('$(CompilerGeneratedFilesOutputPath)\*\**\*.cs')" Remove="$(CompilerGeneratedFilesOutputPath)\*\**\*.cs" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Dto\I18NGenerated\**" />
<Compile Remove="Dto\StaticEntitiesGenerated\**" />
<Compile Remove="StaticEntities\Text\**" />
<EmbeddedResource Remove="Dto\I18NGenerated\**" />
<EmbeddedResource Remove="Dto\StaticEntitiesGenerated\**" />
<EmbeddedResource Remove="StaticEntities\Text\**" />
<None Remove="Dto\I18NGenerated\**" />
<None Remove="Dto\StaticEntitiesGenerated\**" />
<None Remove="StaticEntities\Text\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="JetBrains.Annotations" />
<PackageReference Include="Mapster" />
<PackageReference Include="Mapster.JsonNet" />
<PackageReference Include="NosCore.FastMember" />
<PackageReference Include="NosCore.Packets" />
<PackageReference Include="NodaTime" />
</ItemGroup>
<ItemGroup>
<Compile Update="Resource\LocalizedResources.Designer.cs">
<DependentUpon>LocalizedResources.resx</DependentUpon>
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Resource\LocalizedResources.resx">
<LastGenOutput>LocalizedResources.Designer.cs</LastGenOutput>
<Generator>PublicResXFileCodeGenerator</Generator>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
</ItemGroup>
<ItemGroup>
<Folder Include="Enumerations\Account\" />
</ItemGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>NosCore.Parser</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" VersionOverride="10.0.9" />
<PackageReference Include="NosCore.Analyzers">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>