Last active
July 11, 2024 07:06
-
-
Save marcin-burak/7f43052ce1eb64c0444f07aa3190a53d to your computer and use it in GitHub Desktop.
MSBuild project setup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project> | |
<PropertyGroup> | |
<TargetFramework>net8.0</TargetFramework> | |
<ImplicitUsings>enable</ImplicitUsings> | |
<Nullable>enable</Nullable> | |
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> | |
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | |
</PropertyGroup> | |
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project> | |
<ItemGroup> | |
<PackageVersion Include="AutoFixture" Version="4.18.1" /> | |
<PackageVersion Include="FluentAssertions" Version="6.12.0" /> | |
<PackageVersion Include="FluentValidation" Version="11.9.2" /> | |
<PackageVersion Include="FluentValidation.DependencyInjectionExtensions" Version="11.9.2" /> | |
<PackageVersion Include="Microsoft.Azure.Functions.Worker" Version="1.22.0" /> | |
<PackageVersion Include="Microsoft.Azure.Functions.Worker.Extensions.Http" Version="3.2.0" /> | |
<PackageVersion Include="Microsoft.Azure.Functions.Worker.Extensions.Http.AspNetCore" Version="1.3.2" /> | |
<PackageVersion Include="Microsoft.Azure.Functions.Worker.Sdk" Version="1.17.3" /> | |
<PackageVersion Include="Microsoft.ApplicationInsights.WorkerService" Version="2.22.0" /> | |
<PackageVersion Include="Microsoft.Azure.Functions.Worker.ApplicationInsights" Version="1.2.0" /> | |
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.10.0" /> | |
<PackageVersion Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.21.0" /> | |
<PackageVersion Include="xunit" Version="2.9.0" /> | |
<PackageVersion Include="xunit.runner.visualstudio" Version="2.8.2" /> | |
</ItemGroup> | |
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk"> | |
<ItemGroup> | |
<PackageReference Include="FluentValidation" /> | |
</ItemGroup> | |
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<configuration> | |
<packageSources> | |
<clear /> | |
<add key="nuget" value="https://api.nuget.org/v3/index.json" /> | |
</packageSources> | |
<packageSourceMapping> | |
<packageSource key="nuget"> | |
<package pattern="*" /> | |
</packageSource> | |
</packageSourceMapping> | |
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<AzureFunctionsVersion>v4</AzureFunctionsVersion> | |
<OutputType>Exe</OutputType> | |
<DockerFastModeProjectMountDirectory>/home/site/wwwroot</DockerFastModeProjectMountDirectory> | |
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS> | |
<DockerfileContext>..\..</DockerfileContext> | |
</PropertyGroup> | |
<ItemGroup> | |
<FrameworkReference Include="Microsoft.AspNetCore.App" /> | |
<PackageReference Include="FluentValidation.DependencyInjectionExtensions" /> | |
<PackageReference Include="Microsoft.Azure.Functions.Worker" /> | |
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http" /> | |
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http.AspNetCore" /> | |
<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" /> | |
<PackageReference Include="Microsoft.ApplicationInsights.WorkerService" /> | |
<PackageReference Include="Microsoft.Azure.Functions.Worker.ApplicationInsights" /> | |
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" /> | |
</ItemGroup> | |
<ItemGroup> | |
<None Update="host.json"> | |
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | |
</None> | |
<None Update="local.settings.json"> | |
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | |
<CopyToPublishDirectory>Never</CopyToPublishDirectory> | |
</None> | |
</ItemGroup> | |
<ItemGroup> | |
<Using Include="System.Threading.ExecutionContext" Alias="ExecutionContext" /> | |
</ItemGroup> | |
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project> | |
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))" /> | |
<PropertyGroup> | |
<IsPackable>false</IsPackable> | |
<IsTestProject>true</IsTestProject> | |
</PropertyGroup> | |
<ItemGroup> | |
<PackageReference Include="AutoFixture" /> | |
<PackageReference Include="FluentAssertions" /> | |
<PackageReference Include="Microsoft.NET.Test.Sdk" /> | |
<PackageReference Include="xunit" /> | |
<PackageReference Include="xunit.runner.visualstudio"> | |
<PrivateAssets>all</PrivateAssets> | |
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | |
</PackageReference> | |
</ItemGroup> | |
<ItemGroup> | |
<Using Include="Xunit" /> | |
</ItemGroup> | |
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk"> | |
<ItemGroup> | |
<ProjectReference Include="..\..\lib\Example.Library\Example.Library.csproj" /> | |
</ItemGroup> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment