Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 17 additions & 17 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -45,22 +45,22 @@
</PropertyGroup>

<ItemGroup>
<Using Include="System.Globalization"/>
<Using Include="System.Text.Json"/>
<Using Include="System.FormattableString" Static="True"/>
<Using Include="System.Console" Static="True"/>
<Using Include="System.Security.Cryptography"/>
<Using Include="System.Diagnostics.CodeAnalysis"/>
<Using Include="System.Text.Json.Serialization"/>
<Using Include="System.Linq.Expressions"/>
<Using Include="System.Reflection"/>
<Using Include="System.ComponentModel.DataAnnotations"/>
<Using Include="System.Diagnostics"/>
<Using Include="System.ComponentModel.DataAnnotations.Schema"/>
<Using Include="System.Net"/>
<Using Include="System.Net.Http.Headers"/>
<Using Include="System.Net.Http.Json"/>
<Using Include="System.Text.Json"/>
<Using Include="System.Globalization" />
<Using Include="System.Text.Json" />
<Using Include="System.FormattableString" Static="True" />
<Using Include="System.Console" Static="True" />
<Using Include="System.Security.Cryptography" />
<Using Include="System.Diagnostics.CodeAnalysis" />
<Using Include="System.Text.Json.Serialization" />
<Using Include="System.Linq.Expressions" />
<Using Include="System.Reflection" />
<Using Include="System.ComponentModel.DataAnnotations" />
<Using Include="System.Diagnostics" />
<Using Include="System.ComponentModel.DataAnnotations.Schema" />
<Using Include="System.Net" />
<Using Include="System.Net.Http.Headers" />
<Using Include="System.Net.Http.Json" />
<Using Include="System.Text.Json" />
</ItemGroup>

<ItemGroup>
Expand Down Expand Up @@ -91,6 +91,6 @@
</ItemGroup>

<ItemGroup>
<AdditionalFiles Include="$(MSBuildThisFileDirectory)BannedSymbols.txt" Link="Properties/BannedSymbols.txt"/>
<AdditionalFiles Include="$(MSBuildThisFileDirectory)BannedSymbols.txt" Link="Properties/BannedSymbols.txt" />
</ItemGroup>
</Project>
16 changes: 8 additions & 8 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<PackageVersion Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.7" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.7" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.Sqlite.Core" Version="9.0.7" />
<PackageVersion Include="SQLitePCLRaw.bundle_e_sqlite3" Version="2.1.11" />
<PackageVersion Include="SQLitePCLRaw.bundle_e_sqlite3" Version="3.0.0" />
</ItemGroup>
<ItemGroup>
<PackageVersion Include="Microsoft.AspNetCore.Components.Web" Version="9.0.7" />
Expand All @@ -31,19 +31,19 @@
<PackageVersion Include="Blazored.LocalStorage" Version="4.4.0" />
<PackageVersion Include="Gridify.EntityFramework" Version="2.16.3" />
<PackageVersion Include="Humanizer.Core" Version="2.14.1" />
<PackageVersion Include="AutoMapper" Version="[14.0.0]" />
<PackageVersion Include="AutoMapper" Version="[15.0.1]" />
</ItemGroup>
<ItemGroup>
<PackageVersion Include="Lucene.Net" Version="4.8.0-beta00017"/>
<PackageVersion Include="Lucene.Net.Analysis.Common" Version="4.8.0-beta00017"/>
<PackageVersion Include="Lucene.Net.QueryParser" Version="4.8.0-beta00017"/>
<PackageVersion Include="Lucene.Net" Version="4.8.0-beta00017" />
<PackageVersion Include="Lucene.Net.Analysis.Common" Version="4.8.0-beta00017" />
<PackageVersion Include="Lucene.Net.QueryParser" Version="4.8.0-beta00017" />
</ItemGroup>
<ItemGroup>
<PackageVersion Include="Meziantou.Analyzer" Version="2.0.205" />
<PackageVersion Include="Meziantou.Analyzer" Version="2.0.208" />
<PackageVersion Include="Microsoft.CodeAnalysis.BannedApiAnalyzers" Version="4.14.0" />
<PackageVersion Include="SonarAnalyzer.CSharp" Version="10.14.0.120626" />
<PackageVersion Include="SonarAnalyzer.CSharp" Version="10.15.0.120848" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.Analyzers" Version="9.0.7" />
<PackageVersion Include="IDisposableAnalyzers" Version="4.0.8" />
<PackageVersion Include="Roslynator.Analyzers" Version="4.13.1" />
<PackageVersion Include="Roslynator.Analyzers" Version="4.14.0" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,28 @@
<TargetFramework>net9.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Using Include="DNTCommon.Web.Core"/>
<Using Include="DNTPersianUtils.Core"/>
<Using Include="Microsoft.AspNetCore.Components"/>
<Using Include="Microsoft.AspNetCore.Mvc"/>
<Using Include="Microsoft.AspNetCore.Http"/>
<Using Include="Microsoft.AspNetCore.Authorization"/>
<Using Include="DNTCommon.Web.Core" />
<Using Include="DNTPersianUtils.Core" />
<Using Include="Microsoft.AspNetCore.Components" />
<Using Include="Microsoft.AspNetCore.Mvc" />
<Using Include="Microsoft.AspNetCore.Http" />
<Using Include="Microsoft.AspNetCore.Authorization" />

<Using Include="DntSite.Web.Common.BlazorSsr.Models"/>
<Using Include="DntSite.Web.Common.BlazorSsr.Models" />
</ItemGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App"/>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.Web"/>
<PackageReference Include="DNTCommon.Web.Core"/>
<PackageReference Include="Microsoft.AspNetCore.Components.Web" />
<PackageReference Include="DNTCommon.Web.Core" />
<PackageReference Include="Microsoft.TypeScript.MSBuild">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Content Remove="tsconfig.json"/>
<Content Remove="tsconfig.json" />
</ItemGroup>
<ItemGroup>
<TypeScriptCompile Include="tsconfig.json">
Expand Down
76 changes: 38 additions & 38 deletions src/DntSite.Web/DntSite.Web.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,21 @@
</AssemblyAttribute>
</ItemGroup>
<ItemGroup>
<Using Include="Microsoft.EntityFrameworkCore"/>
<Using Include="Microsoft.EntityFrameworkCore.Metadata.Builders"/>
<Using Include="Microsoft.EntityFrameworkCore.ChangeTracking"/>
<Using Include="Microsoft.EntityFrameworkCore.Diagnostics"/>
<Using Include="DNTCommon.Web.Core"/>
<Using Include="DNTPersianUtils.Core"/>
<Using Include="Microsoft.AspNetCore.Components"/>
<Using Include="Microsoft.AspNetCore.Mvc"/>
<Using Include="Microsoft.AspNetCore.Authorization"/>
<Using Include="Microsoft.EntityFrameworkCore" />
<Using Include="Microsoft.EntityFrameworkCore.Metadata.Builders" />
<Using Include="Microsoft.EntityFrameworkCore.ChangeTracking" />
<Using Include="Microsoft.EntityFrameworkCore.Diagnostics" />
<Using Include="DNTCommon.Web.Core" />
<Using Include="DNTPersianUtils.Core" />
<Using Include="Microsoft.AspNetCore.Components" />
<Using Include="Microsoft.AspNetCore.Mvc" />
<Using Include="Microsoft.AspNetCore.Authorization" />

<Using Include="DntSite.Web.Common.BlazorSsr.Components"/>
<Using Include="DntSite.Web.Common.BlazorSsr.Models"/>
<Using Include="DntSite.Web.Common.BlazorSsr.Components" />
<Using Include="DntSite.Web.Common.BlazorSsr.Models" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore"/>
<PackageReference Include="Microsoft.EntityFrameworkCore" />
<PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand All @@ -32,40 +32,40 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite.Core"/>
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions"/>
<PackageReference Include="Microsoft.Extensions.Configuration"/>
<PackageReference Include="Microsoft.Extensions.Configuration.Binder"/>
<PackageReference Include="Microsoft.Extensions.Configuration.Json"/>
<PackageReference Include="Microsoft.Web.LibraryManager.Build"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.Abstractions"/>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions"/>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions"/>
<PackageReference Include="DNTCommon.Web.Core"/>
<PackageReference Include="Gridify.EntityFramework"/>
<PackageReference Include="Humanizer.Core"/>
<PackageReference Include="EFCoreSecondLevelCacheInterceptor.MemoryCache"/>
<PackageReference Include="Lucene.Net"/>
<PackageReference Include="Lucene.Net.Analysis.Common"/>
<PackageReference Include="Lucene.Net.QueryParser"/>
<PackageReference Include="AutoMapper"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite.Core" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" />
<PackageReference Include="Microsoft.Extensions.Configuration" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" />
<PackageReference Include="Microsoft.Web.LibraryManager.Build" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Abstractions" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
<PackageReference Include="DNTCommon.Web.Core" />
<PackageReference Include="Gridify.EntityFramework" />
<PackageReference Include="Humanizer.Core" />
<PackageReference Include="EFCoreSecondLevelCacheInterceptor.MemoryCache" />
<PackageReference Include="Lucene.Net" />
<PackageReference Include="Lucene.Net.Analysis.Common" />
<PackageReference Include="Lucene.Net.QueryParser" />
<PackageReference Include="AutoMapper" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DntSite.Web.Common.BlazorSsr\DntSite.Web.Common.BlazorSsr.csproj" />
</ItemGroup>
<ItemGroup>
<Content Remove="libman.json"/>
<Content Remove="package.json"/>
<Content Remove="tsconfig.json"/>
<Content Remove="node_modules\**"/>
<Content Remove="libman.json" />
<Content Remove="package.json" />
<Content Remove="tsconfig.json" />
<Content Remove="node_modules\**" />
</ItemGroup>
<ItemGroup>
<None Include="appsettings.json" CopyToOutputDirectory="PreserveNewest"/>
<None Include="appsettings.json" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<Target Name="CopyFilesAfterPublish" AfterTargets="AfterPublish">
<Copy SourceFiles="$(TargetDir)runtimes/linux-x64/native/libSkiaSharp.so" DestinationFolder="$([System.IO.Path]::GetFullPath('$(PublishDir)'))/bin/"/>
<Copy SourceFiles="$(TargetDir)runtimes/linux-x64/native/libHarfBuzzSharp.so" DestinationFolder="$([System.IO.Path]::GetFullPath('$(PublishDir)'))/bin/"/>
<Copy SourceFiles="$(TargetDir)runtimes/linux-x64/native/libSkiaSharp.so" DestinationFolder="$([System.IO.Path]::GetFullPath('$(PublishDir)'))/bin/" />
<Copy SourceFiles="$(TargetDir)runtimes/linux-x64/native/libHarfBuzzSharp.so" DestinationFolder="$([System.IO.Path]::GetFullPath('$(PublishDir)'))/bin/" />
</Target>
</Project>
Loading