/
diev
/
PropertySystem
Обзор
Документация
Войти
/
diev
/
PropertySystem
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
CleanProperties/CleanProperties.csproj
38 строк
1 KB
Dmitrii Evdokimov
Add passing of exception
14 дек 2023, 11:53
14 дек 2023, 11:53
c701a57
Код
Авторство
О чём код?
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>net8.0-windows8.0</TargetFramework> <ImplicitUsings>enable</ImplicitUsings> <Nullable>enable</Nullable> <InvariantGlobalization>true</InvariantGlobalization> <Version>8.2023.12.14</Version> <Description>Works with the Microsoft Windows Properties System.</Description> <Copyright>Copyright 2022-2023 Dmitrii Evdokimov</Copyright> <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> <Company>diev</Company> <AllowUnsafeBlocks>true</AllowUnsafeBlocks> </PropertyGroup> <ItemGroup> <PackageReference Include="iluvadev.ConsoleProgressBar" Version="1.1.0" /> <PackageReference Include="Microsoft-WindowsAPICodePack-Shell-6.0" Version="1.1.6" /> <PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="8.0.0" /> <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" /> </ItemGroup> <ItemGroup> <ProjectReference Include="..\Diev.Extensions\Diev.Extensions.csproj" /> </ItemGroup> <ItemGroup> <None Update="appsettings.json"> <CopyToOutputDirectory>Always</CopyToOutputDirectory> </None> </ItemGroup> <Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition="'$(OS)' == 'Windows_NT' and '$(ConfigurationName)' == 'Release'"> <Exec Command="call PostBuild.cmd $(ProjectPath)" /> </Target> </Project>