Skip to content

Commit

Permalink
Add backend part
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelldi committed Nov 24, 2023
1 parent af61e68 commit a9880d7
Show file tree
Hide file tree
Showing 4 changed files with 63 additions and 0 deletions.
29 changes: 29 additions & 0 deletions aspire-project.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "aspire-plugin", "src\dotnet\aspire-plugin\aspire-plugin.csproj", "{EC305C22-B4BF-4A6B-92F0-C8D2372F0E1E}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{05E096CE-191B-4B30-8B78-7D773C048E49}"
ProjectSection(SolutionItems) = preProject
CHANGELOG.md = CHANGELOG.md
README.md = README.md
src\dotnet\Directory.Build.props = src\dotnet\Directory.Build.props
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{EC305C22-B4BF-4A6B-92F0-C8D2372F0E1E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EC305C22-B4BF-4A6B-92F0-C8D2372F0E1E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EC305C22-B4BF-4A6B-92F0-C8D2372F0E1E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EC305C22-B4BF-4A6B-92F0-C8D2372F0E1E}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
17 changes: 17 additions & 0 deletions src/dotnet/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<Project>
<PropertyGroup>
<TargetFramework>net472</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>

<NoPackageAnalysis>true</NoPackageAnalysis>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>None</ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>

<RiderSDKVersion>2023.3.0-eap07</RiderSDKVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)'=='Debug'">
<DefineConstants>TRACE;DEBUG;JET_MODE_ASSERT</DefineConstants>
</PropertyGroup>
</Project>
7 changes: 7 additions & 0 deletions src/dotnet/aspire-plugin/ZoneMarker.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
using JetBrains.Application.BuildScript.Application.Zones;
using JetBrains.ProjectModel;

namespace AspirePlugin;

[ZoneMarker]
public class ZoneMarker : IRequire<IProjectModelZone>;
10 changes: 10 additions & 0 deletions src/dotnet/aspire-plugin/aspire-plugin.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>AspirePlugin</RootNamespace>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="JetBrains.Rider.SDK" Version="$(SdkVersion)" />
</ItemGroup>

</Project>

0 comments on commit a9880d7

Please sign in to comment.