-
Notifications
You must be signed in to change notification settings - Fork 0
/
PythonApplication1.pyproj
47 lines (47 loc) · 1.85 KB
/
PythonApplication1.pyproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="4.0">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>charp_configuration</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<ProjectGuid>{b560b73a-2433-4ebd-ac79-510934543586}</ProjectGuid>
<InterpreterId>MSBuild|env|$(MSBuildProjectFullPath)</InterpreterId>
<TestFramework>pytest</TestFramework>
<UnitTestPattern>test*.py</UnitTestPattern>
<UnitTestRootDirectory>.</UnitTestRootDirectory>
<StartupFile>python_application.py</StartupFile>
<WorkingDirectory>.</WorkingDirectory>
<IsWindowsApplication>False</IsWindowsApplication>
</PropertyGroup>
<ItemGroup>
<Compile Include="python_application.py" />
<Compile Include="tests\test_default.py" />
</ItemGroup>
<ItemGroup>
<Content Include="requirements.txt" />
</ItemGroup>
<ItemGroup>
<Interpreter Include="env\">
<Id>env</Id>
<Version>0.0</Version>
<Description>env (Python 3.10 (64-bit))</Description>
<InterpreterPath>Scripts\python.exe</InterpreterPath>
<WindowsInterpreterPath>Scripts\pythonw.exe</WindowsInterpreterPath>
<PathEnvironmentVariable>PYTHONPATH</PathEnvironmentVariable>
<Architecture>X64</Architecture>
</Interpreter>
</ItemGroup>
<ItemGroup>
<Folder Include="tests\" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\Python Tools\Microsoft.PythonTools.targets" />
<!-- Uncomment the CoreCompile target to enable the Build command in
Visual Studio and specify your pre- and post-build commands in
the BeforeBuild and AfterBuild targets below. -->
<!--<Target Name="CoreCompile" />-->
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
</Project>