Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
CleanArchitecture
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tsai
CleanArchitecture
Commits
7dcd688c
Commit
7dcd688c
authored
Jan 27, 2020
by
Steve Smith
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removing and ignoring root nuget props files
parent
630b8c80
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
115 deletions
+6
-115
.gitignore
.gitignore
+6
-0
DeploymentSettings.props
DeploymentSettings.props
+0
-8
Directory.Build.props
Directory.Build.props
+0
-49
Directory.Build.targets
Directory.Build.targets
+0
-25
Packages.props
Packages.props
+0
-33
No files found.
.gitignore
View file @
7dcd688c
...
...
@@ -255,3 +255,9 @@ paket-files/
.idea/
*.sln.iml
*.sqlite
# Nuget files
DeploymentSettings.props
Directory.Build.props
Directory.Build.targets
Packages.props
DeploymentSettings.props
deleted
100644 → 0
View file @
630b8c80
<?xml version="1.0" encoding="utf-8"?>
<Project
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<PropertyGroup>
<DeployNugetPackages>
false
</DeployNugetPackages>
</PropertyGroup>
</Project>
\ No newline at end of file
Directory.Build.props
deleted
100644 → 0
View file @
630b8c80
<?xml version="1.0" encoding="utf-8"?>
<Project
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<Import
Project=
"DeploymentSettings.props"
/>
<PropertyGroup>
<Company>
Clean Architecture
</Company>
<Authors>
$(Company)
</Authors>
<Copyright>
Copyright © $(Company) $([System.DateTime]::Now.Year)
</Copyright>
<Trademark>
$(Company)™
</Trademark>
<Product>
$(Company) Projects
</Product>
</PropertyGroup>
<PropertyGroup>
<LangVersion>
latest
</LangVersion>
<NoWarn>
1591;1701;1702;8032;NU1701;AD0001
</NoWarn>
<GeneratePackageOnBuild>
false
</GeneratePackageOnBuild>
<Deterministic>
true
</Deterministic>
</PropertyGroup>
<ItemGroup>
<None
Include=
"content\*"
Pack=
"true"
PackagePath=
"content"
/>
<None
Include=
"build\*"
Pack=
"true"
PackagePath=
"build"
/>
<None
Include=
"lib\*"
Pack=
"true"
PackagePath=
"lib"
/>
</ItemGroup>
<ItemGroup
Condition=
"Exists('$(MSBuildProjectDirectory)\xunit.runner.json')"
>
<None
Update=
"xunit.runner.json"
CopyToOutputDirectory=
"PreserveNewest"
/>
</ItemGroup>
<ItemGroup
Condition=
"'$(WebProjectMode)' == 'true'"
>
<Content
Update=
"wwwroot\**\*;Views\**\*;Areas\**\Views;appsettings.json;web.config"
>
<CopyToPublishDirectory>
PreserveNewest
</CopyToPublishDirectory>
</Content>
<DotNetCliToolReference
Include=
"BundlerMinifier.Core"
Version=
"2.8.391"
/>
<Content
Update=
"Pages\_ViewImports.cshtml"
>
<Pack>
$(IncludeRazorContentInPack)
</Pack>
</Content>
<Content
Update=
"Pages\_ViewStart.cshtml"
>
<Pack>
$(IncludeRazorContentInPack)
</Pack>
</Content>
</ItemGroup>
<PropertyGroup
Condition=
"'$(TestProjectMode)' == 'true'"
>
<IsPackable>
false
</IsPackable>
</PropertyGroup>
</Project>
\ No newline at end of file
Directory.Build.targets
deleted
100644 → 0
View file @
630b8c80
<?xml version="1.0" encoding="utf-8" ?>
<Project
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<PropertyGroup
Label=
"Scripts"
>
<PowerShell>
powershell -NoProfile -ExecutionPolicy Unrestricted -command
</PowerShell>
<Pack>
dotnet pack
"
$(MSBuildProjectDirectory)\$(ProjectFileName)
"
--no-build -o C:\NugetSource -c $(Configuration)
</Pack>
</PropertyGroup>
<Target
Name=
"PackNugets"
AfterTargets=
"AfterBuild"
Condition=
"'$(DeployNugetPackages)'=='true'"
>
<Exec
Command=
"$(Pack)"
/>
</Target>
<!-- https://github.com/NuGet/Home/issues/4412. -->
<Target
Name=
"CopyDepsFiles"
AfterTargets=
"Build"
Condition=
"'$(TargetFramework)'!=''"
>
<ItemGroup>
<DepsFilePaths
Include=
"$([System.IO.Path]::ChangeExtension('%(_ResolvedProjectReferencePaths.FullPath)', '.deps.json'))"
/>
</ItemGroup>
<Copy
SourceFiles=
"%(DepsFilePaths.FullPath)"
DestinationFolder=
"$(OutputPath)"
Condition=
"Exists('%(DepsFilePaths.FullPath)')"
/>
</Target>
<Target
Name=
"PrepublishScript"
BeforeTargets=
"PrepareForPublish"
Condition=
"'$(WebProjectMode)' == 'true'"
>
<Exec
Command=
"bower install"
/>
<Exec
Command=
"dotnet bundle"
/>
</Target>
</Project>
\ No newline at end of file
Packages.props
deleted
100644 → 0
View file @
630b8c80
<?xml version="1.0" encoding="utf-8"?>
<Project
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<ItemGroup>
<PackageReference
Update=
"ReportGenerator"
Version=
"4.2.20"
/>
<PackageReference
Update=
"Moq"
Version=
"4.13.0"
/>
<PackageReference
Update=
"Ardalis.ListStartupServices"
Version=
"1.1.3"
/>
<PackageReference
Update=
"Autofac"
Version=
"4.9.4"
/>
<PackageReference
Update=
"Autofac.Extensions.DependencyInjection"
Version=
"5.0.0"
/>
<PackageReference
Update=
"Microsoft.VisualStudio.Web.CodeGeneration.Design"
Version=
"3.0.0"
/>
<PackageReference
Update=
"Microsoft.Web.LibraryManager.Build"
Version=
"2.0.76"
/>
<PackageReference
Update=
"Swashbuckle.AspNetCore"
Version=
"5.0.0-rc3"
/>
<PackageReference
Update=
"SQLite"
Version=
"3.13.0"
/>
<PackageReference
Update=
"Microsoft.EntityFrameworkCore.Sqlite"
Version=
"3.0.0"
/>
<PackageReference
Update=
"Microsoft.EntityFrameworkCore.SqlServer"
Version=
"3.0.0"
/>
<PackageReference
Update=
"Microsoft.EntityFrameworkCore.Tools"
Version=
"3.0.0"
/>
<PackageReference
Update=
"Microsoft.EntityFrameworkCore.InMemory"
Version=
"3.0.0"
/>
<PackageReference
Update=
"Ardalis.EFCore.Extensions"
Version=
"1.1.0"
/>
<PackageReference
Update=
"Ardalis.GuardClauses"
Version=
"1.2.9"
/>
<PackageReference
Update=
"NETStandard.Library"
Version=
"2.0.3"
/>
</ItemGroup>
<ItemGroup
Condition=
"'$(TestProjectMode)' == 'true'"
>
<PackageReference
Include=
"NETStandard.Library"
Version=
"2.0.3"
/>
<PackageReference
Include=
"coverlet.msbuild"
Version=
"2.7.0"
PrivateAssets=
"all"
/>
<PackageReference
Include=
"Microsoft.EntityFrameworkCore.Tools"
Version=
"3.0.0"
PrivateAssets=
"all"
/>
<PackageReference
Include=
"Microsoft.EntityFrameworkCore.InMemory"
Version=
"3.0.0"
/>
<PackageReference
Include=
"Microsoft.NET.Test.Sdk"
Version=
"16.3.0"
/>
<PackageReference
Include=
"Microsoft.AspNetCore.Mvc.Testing"
Version=
"3.0.0"
/>
<PackageReference
Include=
"xunit"
Version=
"2.4.1"
/>
<PackageReference
Include=
"xunit.runner.console"
Version=
"2.4.1"
PrivateAssets=
"all"
/>
<PackageReference
Include=
"xunit.runner.visualstudio"
Version=
"2.4.1"
PrivateAssets=
"all"
/>
</ItemGroup>
</Project>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment